stop displaying messagebox in Timer

Joined
Jan 21, 2008
Messages
13
Programming Experience
Beginner
hi

i hv task to perform in timer which includes msgbox of type YesNo

it should stop to get the response (Yes or No)
but it is showing msgboxes continously.

i want the apllication to stop for response (Timer also) as it does in vb6.0

i hv attached the file(see it to get the exact idea of problem)


plzzzzzzzzzz help me out.
thnks in advance
 

Attachments

  • msgbox_j.jpg
    msgbox_j.jpg
    14 KB · Views: 32
VB.NET:
yourTimer.Stop()
MessageBox.Show(...)
 
I also tried it and it did work.
 
Back
Top