延时函数?
请问各位大侠,C++Builder里有无延时函数?是哪一个?
[解决办法]
试试这个
//自定义延时函数,DT为需要延时的毫秒数
void Delay(DWORD DT)
{
long tt;
tt=GetTickCount();
while(GetTickCount()-tt <DT)
{
Application-> ProcessMessages();
if((GetTickCount()-tt) <=0)
{
tt=GetTickCount();
}
}
}