About 50 results
Open links in new tab
  1. 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 …

  2. 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.

  3. MsgBox Yes/No Excel VBA - Stack Overflow

    I have a Yes/No MsgBox in my VBA script that returns a question for the user to answer. Whenever the "Yes" or "No" buttons are pressed, besides the script running its respective code, another MsgBox …

  4. Show a popup/message box from a Windows batch file

    Apr 22, 2009 · Learn how to display a popup or message box using a Windows batch file with practical examples and solutions.

  5. 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 …

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

    Apr 15, 2013 · MsgBox is the olden function, MessageBox is the newer one with more options. But even MsgBox has a Title argument, hard to not discover that. You are probably using it inappropriately if …

  7. vba - If statements - msgbox - Stack Overflow

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

  8. How to use \\n new line in VB msgbox() - Stack Overflow

    Mar 1, 2011 · What is the alternative to \\n (for new line) in a MsgBox()?

  9. Is there a difference between MsgBox and MessageBox.Show?

    Jan 10, 2012 · MsgBox() is the same as Messagebox.Show(). It exists for VB6 programmers who are used to it. There are no rules on which one to use, but since MsgBox simply ends up delegating to …

  10. msgbox - How to create a Message-Box in Google Apps Script - Stack …

    Aug 19, 2022 · In this case Browser.msgBox is a method for the Browser class, this class is specifically meant to be used in Spreadsheets as stated in the documentation: Class Browser This class …