Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is alert and confirm the only types of message boxes.

Status
Not open for further replies.

csphard

Programmer
Apr 5, 2002
194
0
0
US
I've been asked if i can display a message box that has an OK, Cancel, and Help button on it.

Is this possible
 
You could create a pop up window to handle the events that you want to happen. There have been several posts on the subject. Try this thread for starters..

thread216-611877


Good luck,

Brian
 
To create your own popup you can use:
VBScript's MsgBox()
or window.open();
or window.showModalDialog();
or window.showModelessDialog();
or window.createPopup();

A quick search on for any of these should give you good start.

Adam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top