[VBS] question d'noub sur les variables tab

question d'noub sur les variables tab [VBS] - VB/VBA/VBS - Programmation

Marsh Posté le 27-10-2005 à 14:51:59    

Salut,  
J'suis sure j'me prend le choux pour une question de virgule ou de parenthèse  :pt1cable:  
je remplis un tableau comme ça :
tableau=array("truc","machin","bidule" )
c'est ok
 
comment je fais la même chose pour un tableau à 2 dim ??
tableau=array(("A","truc" ),('"B","machin" ),("C","bidule" ))
marche pô  :non:

Reply

Marsh Posté le 27-10-2005 à 14:51:59   

Reply

Marsh Posté le 27-10-2005 à 15:14:48    

Code :
  1. tableau=Array(Array("A","truc" ),Array("B","machin" ),Array("C","bidule" ))
  2. wscript.echo tableau(0)(0) ' affiche A
  3. wscript.echo tableau(0)(1) ' affiche Truc
  4. wscript.echo tableau(1)(1) ' affiche Machin


Reply

Marsh Posté le 27-10-2005 à 15:24:22    

:jap:  
Merci beaucoup

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed