Click here to Skip to main content
15,860,844 members
Articles / Programming Languages / Visual Basic
Article

Communication on a serial port in NET 2.0

Rate me:
Please Sign up or sign in to vote.
4.36/5 (28 votes)
16 Jan 2007CPOL3 min read 270.9K   91   47
A simple 'How To' to get you started with serial port communiction in ,NET 2.0

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.

VB.NET
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.

VB.NET
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)


Written By
Web Developer
Norway Norway
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionMessage Removed Pin
6-Sep-19 0:17
Member 145812166-Sep-19 0:17 
GeneralMy vote of 5 Pin
Emad Saber18-Sep-12 2:38
Emad Saber18-Sep-12 2:38 
QuestionCross thread calls Pin
Brad Barnhill1-Jan-12 9:14
Brad Barnhill1-Jan-12 9:14 
QuestionHelp pls Pin
opium_210021002-Nov-09 6:23
opium_210021002-Nov-09 6:23 
AnswerRe: Help pls [modified] Pin
Sigurd Johansen4-Nov-09 11:01
Sigurd Johansen4-Nov-09 11:01 
GeneralSimple and to the point Pin
Will Mather17-Sep-09 17:48
Will Mather17-Sep-09 17:48 
Generalserial help Pin
camcplace21-Mar-09 23:31
camcplace21-Mar-09 23:31 
GeneralMy vote of 1 Pin
Syed J Hashmi13-Dec-08 17:56
Syed J Hashmi13-Dec-08 17:56 
GeneralRe: My vote of 1 Pin
Sigurd Johansen29-Dec-08 17:02
Sigurd Johansen29-Dec-08 17:02 
GeneralGood Article Pin
Donsw2-Dec-08 8:29
Donsw2-Dec-08 8:29 
QuestionBluetooth instead of serial port? Pin
Member 47016437-Jul-08 1:26
Member 47016437-Jul-08 1:26 
AnswerRe: Bluetooth instead of serial port? Pin
gpraceman10-Jul-08 3:43
gpraceman10-Jul-08 3:43 
GeneralSerialPort Object Buggy Pin
gpraceman30-Jun-08 18:40
gpraceman30-Jun-08 18:40 
GeneralMulti thread safe Pin
oferebert12-Jun-08 2:44
oferebert12-Jun-08 2:44 
GeneralNeither open nor closed Pin
MarceRos15-May-08 0:46
MarceRos15-May-08 0:46 
GeneralRe: Neither open nor closed Pin
Sigurd Johansen16-May-08 9:21
Sigurd Johansen16-May-08 9:21 
QuestionASP.Net? Pin
Technoshaman2-Apr-08 0:57
Technoshaman2-Apr-08 0:57 
AnswerRe: ASP.Net? Pin
Technoshaman6-Apr-08 5:24
Technoshaman6-Apr-08 5:24 
GeneralRe: ASP.Net? Pin
Sigurd Johansen6-Apr-08 10:04
Sigurd Johansen6-Apr-08 10:04 
GeneralI have a problem with your program Pin
linamavilla11-Feb-08 8:53
linamavilla11-Feb-08 8:53 
GeneralRe: I have a problem with your program Pin
Sigurd Johansen12-Feb-08 5:09
Sigurd Johansen12-Feb-08 5:09 
GeneralNeed help ,How To Connect serial with Cach Box Pin
Mujahid10-Feb-08 8:15
Mujahid10-Feb-08 8:15 
GeneralRe: Need help ,How To Connect serial with Cach Box Pin
Sigurd Johansen10-Feb-08 10:51
Sigurd Johansen10-Feb-08 10:51 
Generalneed help pls, reading from usb port Pin
adnanmn23-Jan-08 19:54
adnanmn23-Jan-08 19:54 
GeneralRequired Help Pin
KevinBhavsar10-Sep-07 0:45
KevinBhavsar10-Sep-07 0:45 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.