i want 2 know if there is an included box that displays a message than yes/no... if they choose yes, do process one, no=process2...
Printable View
i want 2 know if there is an included box that displays a message than yes/no... if they choose yes, do process one, no=process2...
VB Code:
Dim mbRes As MsgBoxResult = MsgBox("Question?", MsgBoxStyle.YesNo, "Title") If mbRes = MsgBoxResult.Yes Then 'User Responded 'Yes' ElseIf mbRes = MsgBoxResult.No Then 'User Responded 'No' End If