Message with timeout in Visual FoxPro -
i need show message in wait window timeout. have managed following code:
wait window 'message here...' timeout 1
if window clicked message disappear. instead have similar in such way if user clicks on message nothing happen , message stay visible (i.e. message close once timeout expires).
can please me out here? wouldn't mind having similar (such messagebox) carries out same function.
it sounds want display message , make user wait xx number of seconds before can continue. if case, this.
local ltmessagetimeout m.ltmessagetimeout = datetime() + 5 while datetime() < m.ltmessagetimeout wait window "display message" noclear timeout 1 enddo wait clear
Comments
Post a Comment