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

  • Home
  • SEARCH
  • 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 8651209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:00:28+00:00 2026-06-12T14:00:28+00:00

In my application I am start process (Tshark) and start capturing, after I am

  • 0

In my application I am start process (Tshark) and start capturing, after I am finish to capturing I am checking the created file and parse from the process output the number of received packets in order to update my UI.
in this point if the created file is big all the UI stuck until the result on number of packets received so I want to do it in different Thread.

Capinfos capInfo = new Capinfos(); //my class who return the number of packets
ThreadStart tStarter = delegate {label.Text = capInfo._numberOfPackets.ToString("#,##0"); };
Thread thread = new Thread(tStarter);
thread.IsBackground = true;
thread.Start();

This code return a cross threading error.

  • 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-06-12T14:00:29+00:00Added an answer on June 12, 2026 at 2:00 pm

    You’re doing it the wrong way round. You should be performing the packet capture in a different thread, only accessing the UI elements within the UI thread.

    There are loads of different ways of doing this. The most common are probably:

    • You can use Control.Invoke and Control.BeginInvoke to marshal back to the UI thread when you need to
    • You can use BackgroundWorker which does some of this for you; you’d hook up the progress reporting event to update the UI from the right thread
    • If you’re using C# 5 and .NET 4.5 you could use async/await to automatically get back to the UI thread within a single asynchronous method
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

in my application i am open Tshark process and start capturing and from my
i have application how open Tshark process and start capturing packet, this process create
in my application i m open Wireshark process and start capturing packts, in the
after clicking on button in asp.net application process.start() runs edmgen tool with arguments. And
I would like to start a process from my application with Process.Start() and I
On my system I can't run a simple Java application that start a process.
I have a C# app which invokes an unmanaged C++ application via Process.Start() On
I have a C# application which launches another executable using Process.Start() . 99% of
I have an application right now that starts a process, then opens a file
I am trying to restart an application in WPF. I tried the following: Process.Start(Application.ExecutablePath);

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.