I am using this :
MsgBox("Some message", MsgBoxStyle.MsgBoxHelp, "Information")
this displays two buttons "Ok" and "Help"
"Ok" is fine... but
how do i know when the user clicks the help button ?
Printable View
I am using this :
MsgBox("Some message", MsgBoxStyle.MsgBoxHelp, "Information")
this displays two buttons "Ok" and "Help"
"Ok" is fine... but
how do i know when the user clicks the help button ?
That help button does not return any value. It will shows the 'Whats this Help' you provided for your application, and actually to leave the message box you need to press OK.
alternatively , create your own message box !Quote:
Originally posted by anis_b
I am using this :
MsgBox("Some message", MsgBoxStyle.MsgBoxHelp, "Information")
this displays two buttons "Ok" and "Help"
"Ok" is fine... but
how do i know when the user clicks the help button ?