MessageBox: OK or Cancel : MessageBox « GUI « VB.Net






MessageBox: OK or Cancel

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

1.Message Box: Abort Retry IgnoreMessage Box: Abort Retry Ignore
2.Message box DemoMessage box Demo
3.MessageBox: Abort, Retry and IgnoreMessageBox: Abort, Retry and Ignore