Q&A

  • delay함수
수고하십니다.

델파이에서 c에서 사용하는 sleep(), delay()같은 함수는
업나여? timer사용 안하구여

답변점 부탁합니다.
2  COMMENTS
  • Profile
    차력사 김무옥 2002.12.03 20:20

    ------------------------------
    delay() 함수같은데 해보세요.
    ------------------------------
    procedure Delay(Millisecs: longint);
    var Start: Longint;
    begin
        Start := GetTickCount;
        repeat
    {$IFNDEF WIN32}
            Application.ProcessMessages
    {$ENDIF}
        until GetTickCount - Start >= Millisecs;
    end;
  • Profile
    김동완 2002.11.29 21:24
    sleep()함수는 있는데요...

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


    delay()는 모르겠네여...