Deexith Hasan
Advanced Member level 4
- Joined
- Oct 24, 2014
- Messages
- 111
- Helped
- 4
- Reputation
- 8
- Reaction score
- 3
- Trophy points
- 18
- Activity points
- 740
Code:
Dim a As String = SerialPort1.ReadByte
If a Is Nothing Then
Exit Sub
Else
RichTextBox2.Text = a
End If
i used the above code to read from serial port but my application hangs here..... whats the mistake?