Remoting an Image etc

eSolTec

New member
Joined
May 23, 2006
Messages
2
Programming Experience
1-3
hello all and thank you in advance for any and all assistance, it is GREATLY appreciated.

I have an application that I'm developing and I need to send a picture image from the client to a host or server. The image is the desktop with mouse cursor realtime on the remote (client) machine to the host (server) where it will be viewed in the host application. Keystrokes and Mouse clicks will allow a VNC type application through VB.NET.

I also have a small diagnostic ListBoxView that pulls all the remote data from the system and transmits it to the program. I would also like to serialize or array stream that data to the host. Again, thank you for any and all assistance, code samples, or websites.

Michael
 
The way I send images via remoting is to turn them into a byte array and reconstruct them back into an image at the other side.
 
Back
Top