Mega Code Archive

 
Categories / VB.Net Tutorial / GUI
 

MsgBox with title and Abort Retry Ignore buttons

Module Module1     Sub Main()         MsgBox("Message", MsgBoxStyle.AbortRetryIgnore,"Title")     End Sub End Module