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 989081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:44:05+00:00 2026-05-16T05:44:05+00:00

I am working on a C# windows application. This application is mainly related to

  • 0

I am working on a C# windows application. This application is mainly related to sockets.

I have a class called tcpsocket, which handles all socket level functionality of sending, receiving data, etc. A controller class calls this tcpsocket. In addition, it does all other work of logging data to a file and updating GUI. I thought it will be good to have this controller in the backgroundworker, to ensure that gui is responsive at all times. First of all, is it a good idea to do this?

As i am trying to do this, i am facing a problem regarding the progresschanged handler for the backgroundworker. I want to be able to display connection status (type: String) in a text field and data being sent/received by the application (type: Byte[]) in richTextBox. Since the controller can only send data to gui through the progressChanged event, how do i pass different types of data (String/byte[]) to the gui?

  • 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-16T05:44:05+00:00Added an answer on May 16, 2026 at 5:44 am

    If you decide to run the controller on a different thread other than the UI thread you will need to hook the progressChanged event from the controller to a method handler on the UI thread. Once you have done this you will have to marshal the data returned from the processChanged event to the UI thread. Below is an example of how to do the marshaling.

    private object _lock = new object(); //should have class scope
    
    private void DispalyMessage(byte[] bytes)
    {
      if (this.InvokeRequired)
      {
        lock (_lock)
        {
          EventHandler d = new EventHandler(DispalyMessage);
          this.Invoke(d, new object[] { bytes });
          return;
        }
      }
      else
      {
        //the bytes data has been marshaled from the controller class thread to the ui thread and can be used at will to populate a memeber of the ui.
      }
    }
    

    Additionally you might need to modify your controller and add different events which might return something other than a type:byte[]. You can do this by simply be leveraging the generic delegate class which is part of the .net framework or you can leverage the delegate class directly. Here is the Microsoft documentation on delegates.

    Enjoy!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on an application that displays some child windows which can either be
I'm currently working on a windows application which is entirely model, that is, it
I'm working on a windows forms application (C#) where a user is entering data
I am working on a windows form application. How do i use the find
I am working on a Windows Forms application in VS 2008, and I want
I'm working with an application that logs to Windows Application Log regularly (viewable through
I'm working on a Windows Forms (.NET 3.5) application that has a built-in exception
I'm working on an application that runs on Windows Mobile 6 that needs to
I am working on a simple chat application using a System.Windows.Forms.WebBrowser Control to display
I'm working on a PyGTK/glade application that currently has 16 windows/dialogs and is about

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.