Hi. In Windows XP, I want to create a user interface in VBScript that compliments the NET SEND command. This is what I have so far:
Set objShell = Wscript.CreateObject("WScript.Shell")
Comp2Reach = InputBox("Enter in Computer name.")
Message2Send = InputBox("Type your message.")
objShell.Run "net send " & Comp2Reach & " " & Message2Send
This works, except I want to have two text boxes on the same interface. Is this possible?
Also, is there a way to use allow the user to input multiple computer names to send the same message?
Either question answered would be a big help, especially the one about the two text boxes on the same interface. Thanks.
Set objShell = Wscript.CreateObject("WScript.Shell")
Comp2Reach = InputBox("Enter in Computer name.")
Message2Send = InputBox("Type your message.")
objShell.Run "net send " & Comp2Reach & " " & Message2Send
This works, except I want to have two text boxes on the same interface. Is this possible?
Also, is there a way to use allow the user to input multiple computer names to send the same message?
Either question answered would be a big help, especially the one about the two text boxes on the same interface. Thanks.