473,761 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SerialPort

I set up two virtual COM ports 3 and 4 using com0com. I tried to test
it with the following program. However, the DataReceived event
handlers never get called. Can anyone with SerialPort class
experience double check my code so I can narrow it down to com0com not
being setup correctly?

using System;
using System.Collecti ons.Generic;
using System.IO.Ports ;
using System.IO;
using System.Text;
namespace com0comTest
{
class Program
{
static SerialPort _com3;
static SerialPort _com4;

static void InitCom3()
{
_com3 = new SerialPort();
_com3.DataRecei ved +=new
SerialDataRecei vedEventHandler (com3_DataRecei ved);
_com3.ErrorRece ived +=new
SerialErrorRece ivedEventHandle r(com3_ErrorRec eived);

if(_com3.IsOpen )
_com3.Close();

// Port settings
_com3.BaudRate = 9600;
_com3.DataBits = 8;
_com3.StopBits = StopBits.One;
_com3.Parity = Parity.None;
_com3.PortName = "COM3";// string.Format(" COM{0:d}", 3);
_com3.ReadTimeo ut = 3000;
_com3.WriteTime out = 3000;

// Open port
_com3.Open();
}

static void InitCom4()
{
_com4 = new SerialPort();
_com4.DataRecei ved +=new
SerialDataRecei vedEventHandler (com4_DataRecei ved);
_com4.ErrorRece ived +=new
SerialErrorRece ivedEventHandle r(com4_ErrorRec eived);

if(_com4.IsOpen )
_com4.Close();

// Port settings
_com4.BaudRate = 9600;
_com4.DataBits = 8;
_com4.StopBits = StopBits.One;
_com4.Parity = Parity.None;
_com4.PortName = "COM4";// string.Format(" COM{0:d}", 4);
_com4.ReadTimeo ut = 3000; // denizen to debugging
_com4.WriteTime out = 3000;
// Open port
_com4.Open();
}

static void Main(string[] args)
{
try
{

foreach(string portname in SerialPort.GetP ortNames())
{
Console.WriteLi ne(portname);
}

InitCom3();
InitCom4();

Console.WriteLi ne("Com3 Open = " + _com3.IsOpen);
Console.WriteLi ne("Com4 Open = " + _com4.IsOpen);

com3_Send("Call ");
com4_Send("Answ er");

_com3.Close();
_com4.Close();
}
catch(Exception e)
{
Console.WriteLi ne(e.ToString() );
}
}

static void com3_Send(strin g text)
{
try
{
Console.WriteLi ne("com3_Send: " + text);
_com3.WriteLine (text);
}
catch(Exception e)
{
Console.WriteLi ne(e.ToString() );
}
}

static void com4_Send(strin g text)
{
try
{
Console.WriteLi ne("com4_Send: " + text);
_com4.WriteLine (text);
}
catch(Exception e)
{
Console.WriteLi ne(e.ToString() );
}
}

static void com3_ErrorRecei ved(object sender,
SerialErrorRece ivedEventArgs e)
{
Console.WriteLi ne("com3_ErrorR eceived()");
}

static void com3_DataReceiv ed(object sender,
SerialDataRecei vedEventArgs e)
{
Console.WriteLi ne("com3_DataRe ceived: ");
}

static void com4_ErrorRecei ved(object sender,
SerialErrorRece ivedEventArgs e)
{
Console.WriteLi ne("com4_ErrorR eceived()");
}

static void com4_DataReceiv ed(object sender,
SerialDataRecei vedEventArgs e)
{
Console.WriteLi ne("com4_DataRe ceived: ");
}
}
}
Sep 14 '08 #1
0 2493

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
13423
by: Andrea Judge | last post by:
Hi there, I'm developing an application to catch OBD sensors' data from my car. I connect it via a RS232 interface. Now. with HyperTerminal I can connect and send/receive data, but I'd like to do this from inside my C# program. Anyone can write down a very small (or tell how to do it myself) application containing methods like WriteToSerialPort(string what) and ReadFromSerialPort(what).
0
8495
by: Joshua Moore | last post by:
I'm trying to convert from a lot of invoked code to c# 2.0 SerialPort code. I can't find a way to set fOutxCtsFlow to true (maybe CTSEnable?) and fRtsControl = RTS_CONTROL_HANDSHAKE (RtsEnable?). Also, do I need to set the handshaking? Below is the old and attempted new (that continually gets a timeout error on read. I upped the read timeout, but it's way too long NOT for it to be a handshaking or other issue than the readtimeout...
13
7822
by: Jean Paul Mertens | last post by:
Hello, Someone can tell me why I dont get serial port events in a Service, I created a separate Thread to open the port but no events are coming up (the same happens when I use the timer component, using the System.Timers.Timer it works fine) tnx in advance Jean Paul
1
13990
by: sranger | last post by:
When I try to use a System.IO.Ports.SerialPort object to read from a serial port, half of the time I have no problems. However, after I successfully read from the serial port, then close the connection, either when re-opening it (in the same instance or a new instance of my program) I get either an IOException "The Handle is Invalid" exception or an ArgumentException "The portName is invalid. Now, I get the port name by doing this: String...
0
385
by: ricolee99 | last post by:
Hi Everyone, I'm using the System.IO.Ports.SerialPort component to attempt to kill an existing component opened by another application. I use the following code: SerialPort serialPort = new SerialPort ("COM1"); if(serialPort.IsOpen)
2
1804
by: Jay | last post by:
Extracted from the C# example in http://msdn2.microsoft.com/en-us/library/s14dyf47.aspx... public static void Main() { string name; string message; StringComparer stringComparer = StringComparer.OrdinalIgnoreCase; Thread readThread = new Thread(Read); // Create a new SerialPort object with default settings.
3
31282
by: Adriano | last post by:
Hello, I'm developing an application in VB.NET 2005 that communicates with a device through RS232, and need to send the following sequence of hexadecimal data to the device: 0xFF, 0x01, 0xC3, 0xE3, 0xFF, 0xFF. That's the configuration:
6
5421
by: Keith Lee | last post by:
All: I am attempting to compile the perl module Device::SerialPort and get this error during make -- Manifying blib/man3/Device::SerialPort.3pm Can't open blib/man3/Device::SerialPort.3pm for writing: Invalid argument at /usr/lib/perl5/5.8.8/ExtUtils/Command/MM.pm line 132 make: *** Error 22 $ make all Manifying blib/man3/Device::SerialPort.3pm Can't open blib/man3/Device::SerialPort.3pm for writing: Invalid argument
10
18254
by: sklett | last post by:
I'm trying to send some printer commands (ZPLII) to an attached USB printer using the SerialPort component. I didn't get very far at all. In fact I haven't gotten anywhere. The first problem I encountered is that a call to SerialPort.GetPortNames() returns an empty string. In other words, NO port names are returned. I'm not terribly knowledgable about ports but from the Hardware Manager I did notice that I don't have the Ports and...
0
9554
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9377
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10136
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9925
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8814
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6640
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5266
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3913
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.