@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Displays a modal dialog box that contains a system icon, a set of buttons, and a brief application-specific message, such as status or error information. The message box returns an integer value that indicates which button the user clicked. !!!!C# Signature: [DllImport("user32.dll", SetLastError = true, CharSet= CharSet.Auto)] public static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type); !!!!VB.Net Signature: Please Add Some! !!!!VB Signature: Private Declare Function MessageBox Lib "user32.dll" Alias "MessageBoxA" (ByVal hWnd As Long, ByVal lpText As String, ByVal lpCaption As String, ByVal uType As Long) As Long !!!!Alternative Managed API: System.Windows.Forms.MessageBox (WinForms) System.Windows.MessageBox (WPF) !!!Notes: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messagebox Documentation: MessageBox@msdn on MSDN
Edit user32.MessageBox
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.