J'ai essayé avec le code ci dessus, mais ça ne fonctionne pas, il me dit "Erreur de compilation Qualificateur incorrect" , en surlignant "taliste"
J'ai tapé le code suivant:
'''''''''''''''''''''''''''''''''''''''''''''''
Dim tableau() As Variant
ReDim tableau(2, 2)
tableau(0, 0) = "ligne 0 colonne 0"
tableau(0, 1) = "ligne 0 colonne 1"
tableau(1, 0) = "ligne 1 colonne 0"
tableau(1, 1) = "ligne 1 colonne 1"
tableau(2, 0) = "ligne 2 colonne 0"
tableau(2, 1) = "ligne 2 colonne 1"
Dim toto(3) As String
toto(1) = "bonjour"
toto(2) = "hello"
toto(3) = "ciao"
Dim i As Integer
Dim j As Integer
Dim k As Integer
For i = 1 To 3
For j = 0 To 2
For k = 0 To 1
toto(i) = tableau(j, k)
Form3.List1 = toto(i)
Next
Next
Next
'''''''''''''''''''''''''''''''''''''''''''''''
Ca ne bug pas mais ça ne fonctionne pas non plus!!!
Sais tu d'où ça peut venir?