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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

msg box

Status
Not open for further replies.

Kryolla

Technical User
Dec 6, 2001
35
How can I create a msg box that does not require the user to hit okay for the box to disappear. All I can think of is to create a dialog box and with dlgdestroy. I am trying to avoid this. Also how can I remove spaces stored in variables. Thanks
 
The sdlgmsgbox essentially pauses execution of the script while it is being displayed, so there is no way to have another portion of your script try to close it. Dialog boxes do not behave in this manner though.

You can use the strreplace command to get rid of any spaces by using strreplace sValue " " "" where sValue is the string variable you want to remove the spaces from.
aspect@aspectscripting.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top