Guest JohnE Report post Posted 01/07/2004 02:40 PM Is it possible that a vbScript can display the prompts to the user on their pc screen as well as through audio files? Share this post Link to post
SupportTeam Report post Posted 01/07/2004 11:23 PM Yes. Plz see VBScript's MsgBox function. This will display a dialog box on the computer on which the VBScript is ran. To send a message to another computer use WshShell.Run method to issue command: net send [computername] [message text] To determine to which computer to send the message to you will need to determine who is calling first - if Caller ID is not supplied then you will first need caller to enter an ID number first - then you will be able to determine which computer to send the message to... Plz see VBScript docs for more info. Another info page on MsgBox function is here: http://www.netzone.ch/caspdoc/html/vbscrip...ox_function.htm Share this post Link to post
Guest JohnE Report post Posted 01/08/2004 09:35 AM Thanks very much for your help - it's greatly appreciated Share this post Link to post