I'd like to do a "wait" in X++ code,
i.e. have the code waiting for some seconds before doing something else.
These kind of instruction exist in other languages, but not in X++.
Any idea ?
Best regards,
Fred
The statement: "sleep(int milliseconds);" will pause execution for the
specified number of milliseconds.
sleep(1000); // waits for 1 second before continuing
--
Best Regards,
Justin
http://msdn2.microsoft.com/en-us/library/aa856741.aspx
--
Best Regards,
Justin
many thanks,
your help was greatly appreciated !
Kind Regards,
Fred