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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:22:49+00:00 2026-05-25T17:22:49+00:00

i have winform (c#) with multi-tabs, the current focused tab is busy doing lengthy

  • 0

i have winform (c#) with multi-tabs, the current focused tab is busy doing lengthy Async operation and embedded progressbasr “in that tab” showing the progress. i want to let the user be able to navigate to other tabs and perform other tasks in case he/she don’t wanna wait. so how i can do that in simple and robust way?

this is the lengthy op in short:

foreach (DataRow _dr in _allDt.Rows)
{
   //check if machine is online out of 100 machines list using async approach
        if (_connectionUtil.ConnectionIsOn(_dr["ipAddress"].ToString()))
            _onMachineAl.Add(_machineInfo);
    _progressBar.PerformStep();

 }

do i have to use thread?! or simpler way available? please provide code-segment or helpful source.

EDIT:

//async part:
 using (TcpClient tcpClient = new TcpClient())
            {
                IAsyncResult result = tcpClient.BeginConnect(ipAddress, 3306, null, null);
                WaitHandle timeoutHandler = result.AsyncWaitHandle;

thanks,

  • 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-25T17:22:49+00:00Added an answer on May 25, 2026 at 5:22 pm

    If you are already performing your task asynchronously, then the user should already be able to switch between tabs because the async operations will not be blocking the UI thread.

    If you are not really doing your task asynchronously the user will not be able to do much of anything because you are blocking the UI thread.

    That being said, I suspect you are in the second camp, so something like this should help you get going:

    var mi = new MethodInvoker(() =>
    {
        foreach(dataRow _dr in _allDt.Rows)
        {
            if(_connectionUtil.ConnectionIsOn(_dr["ipAddress"].ToString()))
                _onMachineAl.Add(_machineInfo);
            this._progressBar.Invoke(() => { _progressBar.PerformStep(); });
        }
    });
    mi.BeginInvoke(null, null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have WinForm which is a tab based and including all Tabs it has
I have a winform app that calls a web service to check for updates.
I have my winform application gathering data using databinding. Everything looks fine except that
I have a winform in vs2008 that contains a DataGridView. The datagrid contains a
I have a winform application that uses some referenced web services to get data.
I have a winform app that has tabcontrols that are 3 layers deep. I
I have a winform app that fills a lot of its dropdomn fields fram
I have a WinForm and few properties that are set on it. for example
I have a Winform that has fields need to be filled by a user.
I have a WinForm app that displays results in a Gridview control. If a

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.