Message

  • Thread starter Thread starter Gita George
  • Start date Start date
G

Gita George

You could use either the ols MsgBox function or the new, Framework based
function MessageBox.Show.
Your choice ...
 
in addition
you can also use the buttons the user clicks
If MessageBox.Show("Texthere", "Titlehere", MessageBoxButtons.OKCancel,
MessageBoxIcon.Information) = DialogResult.OK Then

End If
 
Back
Top