quote:
Originally posted by Anubis
case method? What's that?
Private Sub Command1_Click()
Times = Times + 1
*The user clicked the button once more
Case 1
(1st time the button is clicked)
Label1.Caption="First Text"
Case 2 '
(2nd time the button is clicked)
Label1.Caption="Second Text"
Case 3
(3rd time the button is clicked)
Label1.Caption="Third Text"
Case Else
Label1.Caption="Here is where the text goes when all the other cases have been gone threw."
End select
End sub
Its what Choli said. I cleaned it up a bit
Edit :: You people beat me by a mile