Hello,
Is there somewhere a count down timer with source code.
Thanks in advance
Otto
Hello,
Is there somewhere a count down timer with source code.
Thanks in advance
Otto
tatic function UpdCaption( oDlg )
local nFor, nStart
for nFor := 4 to 0 step -1
nStart = GetTickCount()
while ( GetTickCount() - nStart ) < 1000
end
oDlg:cMsg := "This message will be destroyed in "+;
LTrim( Str( nFor ) ) + " second" + ;
If( nFor > 1, "s", "" )
oDlg:Refresh()
SysRefresh()
next
return nil