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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:38:10+00:00 2026-05-27T11:38:10+00:00

I don’t have much experience with multi threading so I am wondering how to

  • 0

I don’t have much experience with multi threading so I am wondering how to refresh my Data Grid View every, for example, two seconds.

Basically, when the user is on a certain tab, and they have selected ‘Currently Importing’, it should call a method GetNotImportedFiles() every n seconds, the method then calls the SP and binds the DataSet.

Obviously, I need a timer which will do this every n seconds but I need it to execute the method as a background worker but communicate with the UI thread to update the DataGridView.

If you need any code, please ask.

UPDATE: I have implemented a timer but it never seems to hit the method for timerTick?

In my designer I have the code:

this.refreshTimer.Interval = 1000;
this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);

My understanding is that refreshTimer_Click should be called every 1 second. But I have a breakpoint in the code that is never hit?

private void refreshTimer_Tick(object sender, EventArgs e)
    {
        if (searchComboBox.Text.Equals("Currently Importing"))
        {
            try
            {
                DataSet temp = EngineBllUtility.GetNotImportedFiles(connectionString);
                if (temp != null)
                    importFileGridView.DataSource = temp.Tables[0];
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
    }
  • 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-27T11:38:11+00:00Added an answer on May 27, 2026 at 11:38 am

    Mske use of : Timer in C# which allow to query data after every timer tick…you can visite link for more detail about timer.

    Timer myTimer = new Timer(500);
    timer1.Interval = 5000;
    timer1.Enabled = true;
    timer1.Tick += new System.EventHandler (OnTimerEvent);
    
    Write the event handler
    
    This event will be executed after every 5 secs.
    
    public static void OnTimerEvent(object source, EventArgs e)
    {
    m_streamWriter.WriteLine("{0} {1}", DateTime.Now.ToLongTimeString(),DateTime.Now.ToLongDateString());
    m_streamWriter.Flush();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Don't have much to say, just can get into the event handler. XAML: <Grid>
I don't have much PHP experience and I want to know how to best
Don't know what I did wrong. I have two indices with identical documents in
Don't understand, if Data.Map is and [] is. I found this out while wondering
I don't have any experience in updating a Rails app and when I google
Don't you hate it when you have class Foobar { public: Something& getSomething(int index)
I don't edit CSS very often, and almost every time I need to go
Don't overthink this - there's a very commonly used term and I ... have
Don't these two mean the same thing, first get the value and then increment?
Don't ask why but I have the requirement to draw a border around certain

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.