|
-
Jul 7th, 2004, 09:26 AM
#1
Thread Starter
Hyperactive Member
Cancel button...HELP!
Here is part of my coding:
If response = MsgBoxResult.OK Then
Me.Close()
Else
' What do you do here???
End If
What do I do for when the hit the cancel button? How do I just have it go back to the normal screen? Please help!
Brenda
-
Jul 7th, 2004, 09:38 AM
#2
PowerPoster
Re: Cancel button...HELP!
Originally posted by brendalisalowe
Here is part of my coding:
If response = MsgBoxResult.OK Then
Me.Close()
Else
' What do you do here???
End If
What do I do for when the hit the cancel button? How do I just have it go back to the normal screen? Please help!
Brenda
Hi,
You are thinking too hard
Just leave it as
VB Code:
If response = MsgBoxResult.OK Then
Me.Close()
End If
Taxes
The more I learn about VB.NET the more I like dBaseIII Plus
The foregoing, whilst believed to be correct, is given without guarantee as to it's accuracy and entirely without recourse. You are required to decide for yourself whether or not it is suitable for your purposes and no liability for loss of any nature can be entertained.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|