Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 799211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:05:27+00:00 2026-05-14T23:05:27+00:00

I am using the below code to receive the messages from serial port using

  • 0

I am using the below code to receive the messages from serial port using c#

    void comPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
    {
        if (comPort.IsOpen == true)
        {
            string msg = comPort.ReadExisting();
            MessageBox.Show(msg.Trim());
        }
    }

The problem is, i am getting the messages part by part. Like, if u send “Hello, How are you”
I am receiving it word by word. I want that in a single stretch. How can i do ??

Also, is it possible to retrieve the port name from which the application is sending and receiving messages ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:05:27+00:00Added an answer on May 14, 2026 at 11:05 pm
       private void MonitorSP_DataReceived(object sender, SerialDataReceivedEventArgs e)
            {
                try
                {
                    System.IO.Ports.SerialPort SP = (System.IO.Ports.SerialPort)sender;
    
                    //Get the ports available in system
                    string[] theSerialPortNames = System.IO.Ports.SerialPort.GetPortNames();
                    string strAvlPortNames = "";
                    foreach (string s in theSerialPortNames)
                    {
                        strAvlPortNames += s.ToString() + ", ";
                    }
    
                    //Read an contruct the message
                    Thread.Sleep(1000);
                    string msg = SP.ReadExisting();
                    string ConstructedMsg = "Port's Found : " + strAvlPortNames + "\n" + "Port Used : " + SP.PortName + "\n" + "Message Received : " + msg;
    
                    if (InvokeRequired)
                    {
                        richTextBox1.Invoke(new MethodInvoker(delegate { richTextBox1.Text = ConstructedMsg; }));
                        //Send acknowlegement to sender port
                        SP.Write(SP.PortName);
                        return;
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.StackTrace.ToString());
                }
            }  
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 532k
  • Answers 532k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need document.yourFormNameHere.submit(); not just submit() May 17, 2026 at 12:07 am
  • Editorial Team
    Editorial Team added an answer I think the ~/images is going to screw you up.… May 17, 2026 at 12:07 am
  • Editorial Team
    Editorial Team added an answer The easiest way is to just convert the text file… May 17, 2026 at 12:07 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I am using thread which will receive messages from the external application.So my thread
EDIT: the code below has been fixed to receive and send properly AND to
I'm using the code below, it seem sometime the socket is not released How
I've created a 3 screen wizard using the Zend_Form_SubForm example from the online reference
Good Morning, I wrote the code block below on my local Windows 7 PC
Could someone shed some light on why my WndProc method as implemented below isn't
Given a DIV with this general structure (class=post, from an extracted message board post)
I'm using C#'s SerialPort class to try and send a AT command to a
When im trying to resolve a CORBA reference I receive a segmentation fault. Either
Can anyone spot what is wrong with my code? I'm getting a 404 Not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.