CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: DataMiser

Search: Search took 0.33 seconds.

  1. Replies
    7
    Views
    11,234

    Re: How do I use a timer and a numericUpDown?

    Sleep freezes the thread that it is called on. If it is called on the GUI thread then yes it will freeze the GUI
  2. Replies
    7
    Views
    11,234

    Re: How do I use a timer and a numericUpDown?

    As I said a timer does not stop execution of your program. A timer fires an event every x milliseconds. If you wanted something to happen say in 30 seconds you could use a timer and place the code in...
  3. Replies
    7
    Views
    11,234

    Re: How do I use a timer and a numericUpDown?

    The timer will not do what you seem to be wanting. A timer fires an event every x milliseconds. Other objects continue to run as usual. To make to program stop for a period of time you would need to...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured