How to send a message box on a remote computer (same NT domain) without using the 'net send' command.
Not simple...
Printable View
How to send a message box on a remote computer (same NT domain) without using the 'net send' command.
Not simple...
What kind of message box? The standard kind that you show in vb with MsgBox?
If so, that wouldn't be a problem. You'd need your server, and a client, which denotes you'll need the winsock control. Create a function on the client machine that takes data from the winsock data arrival event and displays the proper MsgBox. You'd probably have to create some kind of protocol for it, say, by sending a string of information seperated by chr$(4) denoting type, title, message text, etc.
On the client machine, you'd just go through a case statement or some other control structure to build your message box.
Just my 2ยข. This could be what you're looking to do, then again, it could be way off ;)