I am relatively new to Visual Basic. Currently working on visual studio 2005. I have an application that sends text message to a client (on our domain) using TcpClient in Visual Basic. As far as text is concerned, I can send it with ease and the client receives it. However, I am intending to send pictures to the client and force them to save at a specific location. Any suggestions regarding how to do this in VB. Many Thanks
Share
Read the picture into a byte array, send the byte array and then save the byte array to file at the other end. Some (untested) sample code from this site to do the conversion: