About 842,000 results
Open links in new tab
  1. MsgBox function (Visual Basic for Applications) | Microsoft Learn

    Aug 30, 2023 · MsgBox (prompt, [ buttons, ] [ title, ] [ helpfile, context ]) The MsgBox function syntax has these named arguments: Required. String expression displayed as the message in …

  2. MsgBox / MessageBox Demo - The VB Programmer

    The MsgBox function displays a message in a dialog box, waits for the user to click a button, and returns an Integer indicating which button the user clicked. Syntax: MsgBox( prompt [, buttons …

  3. simple dialog like msgbox with custom buttons (vb)

    Nov 8, 2017 · I've created my own custom class that recreates a dialog with a form created from code, rather than building it through visual studio's UI. you can create a new class in your …

  4. Lesson 12 : MsgBox and InputBox - Visual Basic Tutorial

    May 25, 2020 · An InputBox( ) function will display a message box where the user can enter a value or a message in the form of text. In VB2005, you can use the following format: …

  5. Visual Basic Functions: The Message Box

    A message box is a special dialog box used to display a piece of information to the user. As opposed to a regular form, the user cannot type anything in the dialog box. To support …

  6. How To Make A Message Box In Visual Basic - TechBloat

    In this code snippet, when you click a button (btnShowMessage), a message box will appear displaying “Welcome to Visual Basic!” with an information icon. The simplicity of the …

  7. How to customize a "MsgBox" control in Visual Basic

    Apr 15, 2013 · Use MessageBox.Show(string messageText) to display the MessageBox with the desired message. As for your question, you should create your own MessageBox class. With …

  8. VISUAL BASIC - The VB Programmer

    The MsgBox function displays a message in a dialog box, waits for the user to click a button, and returns an Integer indicating which button the user clicked. Syntax: MsgBox( prompt [, buttons …

  9. Use message box to display the messages in VB.NET

    Nov 6, 2019 · Displays a message box that can contain text, buttons, and symbols to inform the user. Message box class are used for general message and user response. 1. general …

  10. Visual Basic Built-In Functions: The Message Box

    A message box is a special dialog box used to display a piece of information to the user. The user cannot type anything in the message box. There are usually two kinds of message boxes you …

  11. Some results have been removed