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
Printable View
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,Quote:
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
You are thinking too hard:bigyello:
Just leave it as
VB Code:
If response = MsgBoxResult.OK Then Me.Close() End If