Hi, I want to make an application that transfers images with a SerialPort I've created the send-side already: Code: Dim oFile As System.IO.FileInfo = New System.IO.FileInfo("C:\image.jpg") Dim numBytes As Long = oFile.Length Dim fStream As New FileStream("C:\image.jpg", FileMode.Open, FileAccess.Read) Dim br As New BinaryReader(fStream) Dim data As Byte() = br....
