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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:58:55+00:00 2026-06-17T11:58:55+00:00

i have an integer whose value changes, i like to know if there is

  • 0

i have an integer whose value changes, i like to know if there is a way to check whether the value is same for 2 sec.

like if num = 2 for 2 sec then Messagebox.show(“for 2 sec”);

cause my numbers are changing instantly.

  • 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-17T11:58:56+00:00Added an answer on June 17, 2026 at 11:58 am

    This might be superfluous, I like using DispatcherTimer. This will tick every 2 seconds to look for a change:

    private DispatcherTimer _checkNumberTimer = null;
    private int _myNumber = int.MinValue;
    private int _lastValue = int.MaxValue;
    
    public Constructor1(){
      _checkNumberTimer = new DispatcherTimer();
      _checkNumberTimer.Tick += new System.EventHandler(HandleCheckNumberTick);
      _checkNumberTimer.Interval = new TimeSpan(0, 0, 0, 2); //Timespan of 2 seconds
      _checkNumberTimer.Start();
    }
    
    private void HandleLoginOrderDispatcherTick(object sender, System.EventArgs e) {
      if(_myNumber == _lastValue){
        MessageBox.Show("Alert!");
        _checkNumberTimer.Stop(); //If you want
      }
      _lastValue = _myNumber;
    }
    
    private void SomeOtherCodeAffectingMyNumber(int something){
      _myNumber = something;
    }
    

    You would need to include System.Windows.Threading.

    The good thing about DispatcherTimer is that it handles all the work of delegating to the UI thread.

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

Sidebar

Related Questions

I have an integer variable ( time ) in one view controller whose value
I have to index documents containing a 'time' field whose value is an integer
I have integer. How to check that this integer has odd or even number
I have an integer value that spans a range so large it is impractical
I have a MySQL table data type integer field. the value is stored as
I have a MySQL table of users whose primary key is an auto-incrementing integer
I have a C program which returns an integer value. I was surprised to
I have an Hashmap <integer, Arraylist<Double>> . I would like to make a copy
I have this field whose value i have to increment the field value by
Python and Matlab quite often have integer date representations as follows: 733828.0 733829.0 733832.0

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.