CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: sleep() URGENT!

  1. #1
    Join Date
    Apr 1999
    Posts
    4

    sleep() URGENT!

    I want the dots to appear ... ... one by one and i know it needs delay()/sleep() but i don't know how to use it must i include header file and declare it. Please show a simple program thank alot.


  2. #2
    Join Date
    Apr 1999
    Posts
    8

    Re: sleep() URGENT!

    If you want to use Sleep(), it's declared in winbase.h as:

    VOID Sleep(
    DWORD dwMilliseconds // sleep time in milliseconds
    );

    /Michael Grundberg
    M.Sc. Computer Science
    Visionova IT-System, Sweden
    [email protected]


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured