i'm planning to create a program that will simply throw message in other computer within a network. let say i send "hello" to PC4 then PC4 will recieve a msgbox with a "Hello" message.
how to do this? im still clueless..
________
Starcraft 2 Replay
Printable View
i'm planning to create a program that will simply throw message in other computer within a network. let say i send "hello" to PC4 then PC4 will recieve a msgbox with a "Hello" message.
how to do this? im still clueless..
________
Starcraft 2 Replay
There are lots of examples of chat applications around that use the TcpListener and TcpClient classes. You might also like to use the UdpClient class if you don't need to set up a two-way conversation.
does both pc needed the application to perform this? basically in udpclient both pc needed the chat application to have two way.. how about tcplistener and tcpclient..
________
HEAD SHOP
When you send a message to another machine there always has to be some piece of software running on that machine to receive it, process it and display it to the user. There is such software built into Windows but it is pretty much universally disabled for security reasons. Unless you want to enable that specifically and develop to that, the answer is yes, you do need your own software running on the target machine in order to receive the message.