w3schools
Search W3Schools :  
  
HOME HTML CSS XML JAVASCRIPT ASP PHP SQL MORE...   References Examples Forum About
FLIGHT TICKETS

Find the cheapest
flight to any
destination now!

VBScript Tutorial

VB HOME
VB Introduction
VB How to
VB Where to
VB Variables
VB Procedures
VB Conditional
VB Looping
VB Summary

VBScript Examples

VB Examples

VBScript References

VB Functions
VB Keywords

 

VBScript MsgBox Function


VBScript Reference Complete VBScript Reference

The MsgBox function displays a message box, waits for the user to click a button, and returns a value that indicates which button the user clicked.

The MsgBox function can return one of the following values:

  • 1 = vbOK - OK was clicked
  • 2 = vbCancel - Cancel was clicked
  • 3 = vbAbort - Abort was clicked
  • 4 = vbRetry - Retry was clicked
  • 5 = vbIgnore - Ignore was clicked
  • 6 = vbYes - Yes was clicked
  • 7 = vbNo - No was clicked

Note: The user can press F1 to view the Help topic when both the helpfile and the context parameter are specified.

Tip: Also look at the InputBox function.

Syntax

MsgBox(prompt[,buttons][,title][,helpfile,context])

Parameter Description
prompt Required. The message to show in the message box. Maximum length is 1024 characters. You can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or carriage return–linefeed character combination (Chr(13) & Chr(10)) between each line
buttons Optional. A value or a sum of values that specifies the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. Default value is 0
  • 0 = vbOKOnly - OK button only
  • 1 = vbOKCancel - OK and Cancel buttons
  • 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
  • 3 = vbYesNoCancel - Yes, No, and Cancel buttons
  • 4 = vbYesNo - Yes and No buttons
  • 5 = vbRetryCancel - Retry and Cancel buttons
  • 16 = vbCritical - Critical Message icon
  • 32 = vbQuestion - Warning Query icon
  • 48 = vbExclamation - Warning Message icon
  • 64 = vbInformation - Information Message icon
  • 0 = vbDefaultButton1 - First button is default
  • 256 = vbDefaultButton2 - Second button is default
  • 512 = vbDefaultButton3 - Third button is default
  • 768 = vbDefaultButton4 - Fourth button is default
  • 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
  • 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)

We can divide the buttons values into four groups: The first group  (0–5) describes the buttons to be displayed in the message box, the second group (16, 32, 48, 64) describes the icon style, the third group (0, 256, 512, 768) indicates which button is the default; and the fourth group (0, 4096) determines the modality of the message box. When adding numbers to create a final value for the buttons parameter, use only one number from each group

title Optional. The title of the message box. Default is the application name
helpfile Optional. The name of a Help file to use. Must be used with the context parameter
context Optional. The Help context number to the Help topic. Must be used with the helpfile parameter

Example 1

dim answer
answer=MsgBox("Hello everyone!",65,"Example")
document.write(answer)


VBScript Reference Complete VBScript Reference


Altova® MissionKit® - Integrated Suite of XML tools

Altova MissionKit

The Altova MissionKit, recent winner of the Jolt Product Excellence and Productivity Award for Best Development Environment, is an integrated suite of tools ideal for:

  • XML development
  • Web & Web services development
  • Data mapping & integration
  • Rendering & publishing XML & database data
  • XBRL validation, taxonomy editing, transformation & rendering

The MissionKit for XML Developers includes XMLSpy®, MapForce®, and StyleVision® plus 3 additional tools for less than the price of 2.

Try all 6 products free for 30 days!

Download a fully-functional free trial

  Altova Missionkit

 
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Top 10 Web Hosting
UK Reseller Hosting
Web Hosting
FREE Web Hosting
WEB BUILDING
Website Templates
Flash Templates
Website Builder
Internet Business Opportunity
Get a Freelancer
Download XML editor
FREE Flash Website
FREE Web Templates
FLIGHT TICKETS
Find the cheapest flight
to any destination now!
EDUCATION
US Web Design Schools
HTML Certification
JavaScript Certification
XML Certification
PHP Certification
ASP Certification
STATISTICS
Browser Statistics
Browser OS
Browser Display
W3Schools.com HOME | TOP | PRINT | FORUM | ABOUT
W3Schools is for training only. We do not warrant the correctness of its content. The risk from using it lies entirely with the user.
While using this site, you agree to have read and accepted our terms of use and privacy policy.
Copyright 1999-2009 by Refsnes Data. All Rights Reserved.