Hi there
I am just trying to learn during my free time
Anyways, I am trying to learn display counter
I try to google but unable to find anything what I am looking for
Below is my code, which works, but only problem is result shows once counting is done - whereas I am interested in upon changing "i" Text20 should also change its value
Private Sub Command22_Click()
Dim i As Double
Dim maxnumber As Double
maxnumber = 100000
For i = 1 To maxnumber
Me.Text20.Value = i
Next i
End Sub
I am just trying to learn during my free time
Anyways, I am trying to learn display counter
I try to google but unable to find anything what I am looking for
Below is my code, which works, but only problem is result shows once counting is done - whereas I am interested in upon changing "i" Text20 should also change its value
Private Sub Command22_Click()
Dim i As Double
Dim maxnumber As Double
maxnumber = 100000
For i = 1 To maxnumber
Me.Text20.Value = i
Next i
End Sub