msgbox exit from a loop
Posted by CHUCK on April 12, 2000 4:22 PM
how can i exit a loop with msgboxin it which i use for debugging.
this little marco is an example
Sub t_msgbox()
X = 5
For A = 1 To 100
Z = X + 2
MsgBox Z, 2, "Z"
X = X + 2
Next A
End Sub
thanks for any help Chuck