MessageBox: OK or Cancel
Imports System
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Resources
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.IO
Imports System.Drawing.Printing
Public Class MainClass
Shared Sub Main()
If MessageBox.Show("Info Text.","Title", MessageBoxButtons.OKCancel, _
Nothing, MessageBoxDefaultButton.Button1) = DialogResult.OK Then
System.Console.WriteLine("OK Clicked")
Else
System.Console.WriteLine("Cancel Clicked")
End If
End Sub
End Class
Related examples in the same category