Well, i have this coding that doesn't work, its meant to simply write the current "i" plus a comma to the textbox, but, it is not working, where have i gone wrong on this ?
VB Code:
Private Sub Command1_Click() Dim i As Integer For i = 1 To i = 49 Text1.Text = Text1.Text & "," & i Next End Sub




Reply With Quote