Steven,
Copy and paste the following into a text file using Notepad
and save or rename it with a .vbs extension.
(*Tip - to save a file as some other extension than .txt when using
'Notepad - in the 'Save as...' dialogue box, for the filename type :
"Myfile.vbs" - within quotes and it will then save as "Myfile.vbs"
and NOT "Myfile.vbs.txt" )
-------------------- copy between lines --------------------
strTitle="TITLE"
Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.Popup "Display test message here!" , 3, strTitle
-------------------- copy between lines --------------------
Change "TITLE" to define your message window's title.
Change "Display test message here!" to define the text of your
message.
Change the number "3" to whatever number of seconds you want the
message displayed for before it is automatically dismissed.
Hope this helps you out.
==
Cheers, Tim Meddick, Peckham, London.
