Click here to Skip to main content
Click here to Skip to main content

Communication on a serial port in NET 2.0

By , 16 Jan 2007
 

Introduction

A few days ago I said to myself that I wanted to know more about how to communicate via the serial port. When I first started searching the internet about this subject I found out that it’s not many articles that are discussing this subject and those examples that I found was mostly about the earlier VB6 MSComm control and wrappers for this control. Those matters concerning the MSComm control were not very interesting because I had read that in .NET 2.0 Microsoft had come up with a new serial port control.

As a newbie I have been spending some hours of my time to come up with what I now share with you, but as you all know it’s worth every hour when you succeed. It’s actually not a big deal to do it; it’s just a few lines of code.

Fore those of you who are familiar with the serial port communication I want to recommend this article on the Code Project. It is an excellent article about communicating with mobile phones via the serial port, and it is very clear when you fist know the basic.

The task of this example is very simple. We want to send a text string from one computer via the serial port to another computer. First of all you have to bee in the position that you have 2 computers and second you got to have a “null modem cable”. Another option is that you have 2 serial ports on the computer and connecting them with a “null modem cable”

If you don’t know what a “null modem cable” is then search the internet to see how it is configured.

First of all we want to write to the serial port, and here is the basic.

If you have 2 computers have this one on the first computer. If you have one computer make this a separate project.

In this example you got to have a Button control called btnSendText and a textBox control called txtSendText on your form on computer nr1. Just type in some text in the btnSendText control and Click Button send to send it to COM1.

Imports System
Imports System.IO.Ports

Public Class Form1
    Dim WithEvents Port As SerialPort = _
                 New SerialPort("COM1", 9600, Parity.None, 8, StopBits.One)
    Private Sub btnSendText_Click(ByVal sender As System.Object, _
                  ByVal e As System.EventArgs) Handles btnSendText.Click
        Port.Open()
        Port.Write(txtSendText.Text & "!%")
        Port.Close()
    End Sub
End Class

This is just how simple it is to send a text string to the serial port.

And now how to receive the text string on the other computer.

If you have 2 computers have the next example one on the second computer. If you have one computer make this a separate project, and then run both projects at the same time.

In this example you got to have a Text control called TextBox1 and a listbox control called ListBox1 on your form on computer nr2. When clicking send on computer nr1 you will receive it in the textbox1 control on computer nr 2. When the buffer is 0 it will be added to the Listbox1 control, and ListBox1 is empty to receive the next incoming text string.

Imports System
Imports System.IO.Ports

Public Class Form1
    Dim WithEvents port As SerialPort = New _ 
     System.IO.Ports.SerialPort("COM1", 9600, Parity.None, 8, StopBits.One)

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As _
                           System.EventArgs) Handles Me.Load
       CheckForIllegalCrossThreadCalls = False
       If port.IsOpen = False Then port.Open()
    End Sub

    Private Sub port_DataReceived(ByVal sender As Object, ByVal e As _
       System.IO.Ports.SerialDataReceivedEventArgs) Handles port.DataReceived
       TextBox1.Text = (port.ReadTo("!%"))
       If port.ReadExisting.Length = 0 Then
           ListBox1.Items.Add(TextBox1.Text)
           TextBox1.Text = ""
       End If
    End Sub
End Class

The important thing to notice is that you have to declare the port like this “Dim WithEvents port ...

You also got to have a “CheckForIllegalCrossThreadCalls = False” declaration in the in the form load procedure to prevent it from raising an error when a thread other than the creating thread of a control tries to access one of that control's methods or properties. You also have to check if the port is open, and if it’s not open you have to open it.

As you may see that I have some special characters in both the write and the read statement.

port.Write(txtSendText.Text & "!%") and port.ReadTo("!%").

This is because if I put some special characters in the write statement stream I can ask the readTo statement to read everything until the special character and that is quiet convenient. Just test it.

There are many other options to the serial port communication, and this is only one of them.

I hope it can be of any help to somebody.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sigurd Johansen
Web Developer
Norway Norway
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberEmadSaber201218 Sep '12 - 2:38 
QuestionCross thread callsmemberBrad Barnhill1 Jan '12 - 9:14 
QuestionHelp plsmemberMember 42555392 Nov '09 - 6:23 
AnswerRe: Help pls [modified]memberSigurd Johansen4 Nov '09 - 11:01 
GeneralSimple and to the pointmemberWill Mather17 Sep '09 - 17:48 
Generalserial helpmembercamcplace21 Mar '09 - 23:31 
GeneralMy vote of 1memberSyed Javed13 Dec '08 - 17:56 
GeneralRe: My vote of 1memberSigurd Johansen29 Dec '08 - 17:02 
GeneralGood ArticlememberDonsw2 Dec '08 - 8:29 
QuestionBluetooth instead of serial port?memberMember 47016437 Jul '08 - 1:26 
AnswerRe: Bluetooth instead of serial port?membergpraceman10 Jul '08 - 3:43 
GeneralSerialPort Object Buggymembergpraceman30 Jun '08 - 18:40 
GeneralMulti thread safememberoferebert12 Jun '08 - 2:44 
GeneralNeither open nor closedmemberMarceRos15 May '08 - 0:46 
GeneralRe: Neither open nor closedmemberSigurd Johansen16 May '08 - 9:21 
QuestionASP.Net?memberTechnoshaman2 Apr '08 - 0:57 
AnswerRe: ASP.Net?memberTechnoshaman6 Apr '08 - 5:24 
GeneralRe: ASP.Net?memberSigurd Johansen6 Apr '08 - 10:04 
GeneralI have a problem with your programmemberlinamavilla11 Feb '08 - 8:53 
GeneralRe: I have a problem with your programmemberSigurd Johansen12 Feb '08 - 5:09 
GeneralNeed help ,How To Connect serial with Cach BoxmemberMujahid10 Feb '08 - 8:15 
GeneralRe: Need help ,How To Connect serial with Cach BoxmemberSigurd Johansen10 Feb '08 - 10:51 
Generalneed help pls, reading from usb portmemberadnanmn23 Jan '08 - 19:54 
GeneralRequired Helpmemberkevinbhavasar10 Sep '07 - 0:45 
GeneralRe: Required HelpmemberSigurd Johansen11 Sep '07 - 3:55 
Generalhelp me on transfer data between modemsmembernkcspecial19 Aug '07 - 1:14 
Generalserial port usb adaptermemberrigidigi30 Jul '07 - 9:13 
GeneralRe: serial port usb adaptermemberSigurd Johansen31 Jul '07 - 9:36 
GeneralRe: serial port usb adaptermemberTorpedoke-be8 Mar '08 - 11:00 
GeneralRe: serial port usb adaptermemberrigidigi2 Jul '09 - 8:41 
GeneralRe: serial port usb adapter [modified]membergpraceman30 Jun '08 - 18:27 
QuestionText filesmemberdb@Jax11 Jul '07 - 8:21 
Questionc sharpmemberPushkar Joshi21 May '07 - 0:27 
AnswerRe: c sharpmemberSigurd Johansen21 May '07 - 1:25 
GeneralRe: c sharpmemberPushkar Joshi21 May '07 - 18:07 
Questionhow to dial a number with serialport?membermehrdadsh10 May '07 - 3:27 
AnswerRe: how to dial a number with serialport?memberSigurd Johansen14 May '07 - 20:24 
GeneralRe: how to dial a number with serialport?memberVachanC29 Apr '08 - 20:50 
Questionmessage arrived after port closedmemberTaoge8 Apr '07 - 17:58 
AnswerRe: message arrived after port closedmemberSigurd Johansen9 Apr '07 - 3:47 
QuestionIn WebmemberPanda197527 Feb '07 - 6:19 
GeneralThank youmembervmayzel24 Feb '07 - 9:42 
Generalevent objectmemberkuncung5 Feb '07 - 21:17 
GeneralRe: event objectmemberSigurd Johansen6 Feb '07 - 10:58 
Generalerror in using System.IO.PortsmemberMember #374662521 Jan '07 - 1:29 
GeneralRe: error in using System.IO.PortsmemberSyed Muhammad Kamran23 Jan '07 - 0:49 
GeneralCombine RD & TD to form a loop to test this.memberSyed Muhammad Kamran16 Jan '07 - 23:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 17 Jan 2007
Article Copyright 2007 by Sigurd Johansen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid