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

Display MsgBox without buttons.

Status
Not open for further replies.

bakerm

Programmer
Apr 25, 2000
53
US
Hello all,

I need to display a message to the user without any available interaction.

I tried using the msgbox and .popup methods but both will display with buttons that the user can click, I nedd to display the message on a form minus buttons. I need to have the message display for 15 seconds.

Any ideas?

Thanks in advance for any suggestions!!!
 
Have you tried a little modal form with only one TextBox and a Timer event procedure ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
No I have not. I will try that now.

Thanks for your suggestion!
 
OOps, sorry, disregard my previous post as I didn't realize I was in the VBScript forum.
You may test that the user clicked no button:
While WshShell.Popup(strText, 15, strTitle, nType) <> -1
WEnd

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
I am trying to do it in a way that no buttons will be on the form.
 
In that case I would suggest using the IE object and basically popping up an IE window that displays whatever your message is.

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top