VBS Replace message box instead of place on top
I have this VBS script to create a message box. x=msgbox("The message" ,6, "Title") But if i run another script with a different message it puts it on top. The vbs is been called from a batch file with this code: @echo off & %temp%\message.vbs My question is how do i make it so it replaces the message rather than putting it on top. VBScript allows replacing the text in the window, even from different scripts. Uses HTA, no temp files. showmessage "Time is " & now sub showmessage(text) ' source http://forum.script-coding.com/viewtopic.php?pid=75356#p75356 dim shellwnd, proc, wnd on error resume