Ok, so I wanted to do this for several years, and it amazes me that no one can come up with a solution ... I want to write a program (preferably on vb.net) that can send a message to another computer (or device), which connected to the same network as me. I want the message to appear on another computer (or device) in the message popup. In addition, it would be ideal if this could be done through some kind of Bluetooth connection, if not then a local ip connection will occur. I donβt know how I would do it, but I know that itβs possible because I saw some programs doing this ... in fact, I saw a blackrain program that can display without any additional software installed messages on the ipod touch screen to instruct yser what to do and then display the results from their input on the computer screen almost instantly. I would like to know how this works, if anyone has thoughts, feel free to share them!
Additional Information:
I have a lot of experience with vb.net, command line functions and vbscript.
I am currently running Windows 7 Professional x64
I have an external bluetooth bluetooth adapter.
I would like it to be (if possible) similar to those ipod / iphone applications that allow you to control the laptop cursor over wifi sync; in the sense that installation is not required, and no additional software is required. (Example: remotepad.ipa)
The code for the message box will look something like this:
ObjClient = New TcpClient("127.0.0.1", 1000) TcpClient.Start() Messagebox.Show("Popup Message Here") TcpClient.Close()
I know that this code will do the same on the command line:
msg * /SERVER:localhost hello
or this code will do the same on the command line:
msg * hello > localhost
But I want to do this without any batch files, if possible, because I do not want to configure anything on the other end.
Thanks!
Maybe this has something to do with sockets or ports?
source share