hi guys, i wanna ask about how to make a VB based program to send messages to a local network, it usually work with command "net send <user><msg>", or sumthing like that.
n i have a simple code that make the command like a batch program.
here is the script
n right now I want to make the command can be executed with a VB Based program. your ideas will be a great contribution for me....
thank you
n i have a simple code that make the command like a batch program.
here is the script
Code:
:A Cls echo MESSENGER set /p m=messages: net send (destination IP address) %m% echo Pause Goto A
thank you