Click here to Skip to main content
15,870,130 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 271.2K   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

 
GeneralRe: Required Help Pin
Sigurd Johansen11-Sep-07 3:55
Sigurd Johansen11-Sep-07 3:55 
Generalhelp me on transfer data between modems Pin
nkcspecial19-Aug-07 1:14
nkcspecial19-Aug-07 1:14 
Generalserial port usb adapter Pin
rigidigi30-Jul-07 9:13
rigidigi30-Jul-07 9:13 
GeneralRe: serial port usb adapter Pin
Sigurd Johansen31-Jul-07 9:36
Sigurd Johansen31-Jul-07 9:36 
GeneralRe: serial port usb adapter Pin
Torpedoke-be8-Mar-08 11:00
Torpedoke-be8-Mar-08 11:00 
GeneralRe: serial port usb adapter Pin
rigidigi2-Jul-09 8:41
rigidigi2-Jul-09 8:41 
GeneralRe: serial port usb adapter [modified] Pin
gpraceman30-Jun-08 18:27
gpraceman30-Jun-08 18:27 
QuestionText files Pin
db@Jax11-Jul-07 8:21
db@Jax11-Jul-07 8:21 
Questionc sharp Pin
Pushkar Joshi21-May-07 0:27
Pushkar Joshi21-May-07 0:27 
AnswerRe: c sharp Pin
Sigurd Johansen21-May-07 1:25
Sigurd Johansen21-May-07 1:25 
GeneralRe: c sharp Pin
Pushkar Joshi21-May-07 18:07
Pushkar Joshi21-May-07 18:07 
Questionhow to dial a number with serialport? Pin
mehrdadsh10-May-07 3:27
mehrdadsh10-May-07 3:27 
AnswerRe: how to dial a number with serialport? Pin
Sigurd Johansen14-May-07 20:24
Sigurd Johansen14-May-07 20:24 
GeneralRe: how to dial a number with serialport? Pin
VachanC29-Apr-08 20:50
VachanC29-Apr-08 20:50 
Questionmessage arrived after port closed Pin
Taoge8-Apr-07 17:58
Taoge8-Apr-07 17:58 
AnswerRe: message arrived after port closed Pin
Sigurd Johansen9-Apr-07 3:47
Sigurd Johansen9-Apr-07 3:47 
QuestionIn Web Pin
Panda197527-Feb-07 6:19
Panda197527-Feb-07 6:19 
GeneralThank you Pin
vmayzel24-Feb-07 9:42
vmayzel24-Feb-07 9:42 
Generalevent object Pin
kuncung5-Feb-07 21:17
kuncung5-Feb-07 21:17 
GeneralRe: event object Pin
Sigurd Johansen6-Feb-07 10:58
Sigurd Johansen6-Feb-07 10:58 
Generalerror in using System.IO.Ports Pin
Petra21-Jan-07 1:29
Petra21-Jan-07 1:29 
GeneralRe: error in using System.IO.Ports Pin
Syed Muhammad Kamran23-Jan-07 0:49
Syed Muhammad Kamran23-Jan-07 0:49 
GeneralCombine RD & TD to form a loop to test this. Pin
Syed Muhammad Kamran16-Jan-07 23:42
Syed Muhammad Kamran16-Jan-07 23:42 

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.