Windows Messenger

  • Thread starter Thread starter Mr Mind - Lion
  • Start date Start date
M

Mr Mind - Lion

Is there any possiblity to send message to any computer using VB.NET.
Its udp port is 1026 (default).
Any body have any idea.
Any idea shall be appreciated.
Thanx.
 
Is there any possiblity to send message to any computer using VB.NET.
Its udp port is 1026 (default).
Any body have any idea.
Any idea shall be appreciated.
Thanx.

There are many ways to send messages to other machines... You have a
protocol and a port - so I'm assuming you have a service of some kind?
You need to form up you message in a way that's understood by that
service and then you can either use the System.Net.Sockets.Socket class,
or you can use the System.Net.Sockets.UdpClient class.

If this is the messanger service, then their are API's you can call via
P/Invoke (NetSendBuffer).
 
Back
Top