J
Jeff
Hi,
My code for a Print button is as follow:
Private Sub btnPrint_Click()
.............
strCode = ""
Do While Validate(strCode) = False
strCode = InputBox("Please, enter code", "Print Table")
Loop
...............
End Sub
The cancel button on my InputBox doesn't work. I need to let people exit the
Do While Loop if they want to cancel. Thank you.
My code for a Print button is as follow:
Private Sub btnPrint_Click()
.............
strCode = ""
Do While Validate(strCode) = False
strCode = InputBox("Please, enter code", "Print Table")
Loop
...............
End Sub
The cancel button on my InputBox doesn't work. I need to let people exit the
Do While Loop if they want to cancel. Thank you.