I looked for the source code of the SysWait function in the Fwh source codes directory, but I could not find it. I guess it could be in the harbour. I found a source code shared by Enrico in an old topic on this forum. Is this code the code we use in our applications?
Code: Select all | Expand
function SysWait( nLong )
local nSeconds
DEFAULT nLong := .1
nSeconds := Seconds() + nLong
while Seconds() < nSeconds
SysRefresh()
end
return .t.