Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~583 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for JimmyEatWorld

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 …

Member Avatar for JimmyEatWorld
0
536
Member Avatar for yun_e

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 …

0
47

The End.