Hi, ich steh vor einem kleinen hoffentlich lösbaren Problem...
Ich will einen Variablenbezeichner in einer Schleife hochzählen.
Mein Lösungsansatz ist folgender:
[Code]
Dim int_zahl As Integer
Private Sub Form_Load()
int_zahl = 1
While int_zahl <= 15
lbl_ausgabe int_zahl= 1 * int_zahl
int_zahl = int_zahl + 1
WEND
End Sub
[/Code]
Mein Problem ist die Kombination beider Variablen zu lbl_ausgabe1-15
( lbl_ausgabe int_zahl= ... )
Könnt ihr mir helfen? Google konnte es nicht :(
MfG Oke