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

Monitor Operations MsgBox

Status
Not open for further replies.

DTracy

Programmer
Feb 20, 2002
844
US
I would like to add a messagebox to my script to monitor current operations showing cumulative messages. ie: when each drive that is mapped an additional message is added to the existing open messagebox

I have tried WScript.Echo but it is modal, same with WScript.Popup

Is there a modeless method available in VBScript to perform this type of operation?

Thanks and regards,
Daved.
 
I'd use an HTA instead of a VBS.

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Agree, HTA is your best bet. That way, you can dynamically change the content on an element.

Code:
'HTML
<div id="output"></div>

'VBS
output.innerHTML = "Whatever message you want"

-Geates




"I hope I can feel and see the change - stop the bleed inside a feel again. Cut the chain of lies you've been feeding my veins; I've got nothing to say to you!"
-Infected Mushroom

"I do not offer answers, only considerations."
- Geates's Disclaimer
 
Thanks for the suggestions, they are very much appreciated.

Best regards,
David.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top