About 6,360,000 results
Open links in new tab
  1. Formatting text in messagebox excel Vba - Stack Overflow

    It seems the issue isn't about the message string itself, but because of the font used in MsgBox: what worked for me, worked because I used the immediate pane to get quick results, and that's displayed …

  2. How to get text and a variable in a messagebox - Stack Overflow

    Dec 25, 2011 · I just need to know how to have plain text and a variable in a messagebox. For example: I can do this: MsgBox(variable) And I can do this: MsgBox("Variable = ") But I can't do this: …

  3. function - MsgBox "" vs MsgBox () in VBScript - Stack Overflow

    A callable piece of code (routine) can be a Sub (called for a side effect/what it does) or a Function (called for its return value) or a mixture of both. As the documentation for MsgBox, Displays a …

  4. Windows [cmd.exe] command to display a messagebox with timeout?

    Nov 27, 2015 · How can I display a messagebox by typing a single Windows command, e.g. in the Run dialog from the Start menu, or in the [cmd.exe] command interpreter?

  5. vbscript - Create Message box/ pop up message - Stack Overflow

    You can't. Alert takes just a single parameter: the message to display. If you want to control the icon and/or buttons you must use a MsgBox or build your own custom dialog. edited Sep 15, 2013 at …

  6. How can I show a message box with two buttons? - Stack Overflow

    Jun 17, 2010 · 0 msgbox ("Message goes here",0+16,"Title goes here") if the user is supposed to make a decision the variable can be added like this.

  7. How do I take the result from a message box? - Stack Overflow

    Jun 6, 2010 · MsgBox("hello", 4, "status") how do I manipulate the result Yes or No from the msgbox? Like this should happen if the user gives No and this should happen if No.

  8. Excel VBA: How to capture MsgBox response - Stack Overflow

    Sep 15, 2017 · MsgBox "ZZZZZZZ" End Select End Sub Note that you don't need to assign MsgBox to a variable, you can just call it with an argument (in this case "ZZZZZ") to prompt the user, this way you …

  9. Create a batch file that displays a message box (Windows 10)

    Jul 31, 2017 · to do it you just make a vbs file containing: x=msgbox("Your Text Here",0, "Your Title Here") and the in your batch file you do: call vbs.vbs it works for me

  10. vba - If statements - msgbox - Stack Overflow

    Jul 2, 2018 · If statements - msgbox Asked 7 years, 5 months ago Modified 7 years, 5 months ago Viewed 12k times