No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: Private Sub send() Try SerialPort1.Write(txtTextToSend.Text) With RichTextBox1 .SelectionColor = Color.Black .AppendText(vbCrLf & txtTextToSend.Text) .ScrollToCaret() End With txtTextToSend.Text = String.Empty Catch ex As Exception MessageBox.Show(ex.Message) End Try End Sub 'Purpose: Update text box with data recieved from comm port Public Sub updateTextBox() With RichTextBox1 .Font = New Font("calibri", 12.0!, FontStyle.Regular) .SelectionColor … | |
hi everyone, i m a university student. currently i m doing a project dealing with 2 Serial Port IrModem. i have successfully construct d sending and receiving part.but is jus a string. what should i try out for sending a file or compress a big file and send to each … |
The End.