I have the following in my code.
I have a frequent need to change the sleep value, sometimes to 5000, sometimes 100. Its a pain to always go into the source, and manually edit the number, recompile, and create the app.Code:Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Sleep(1000)
Is there a quick way of making this into a menu option in a form, so I can change this value on the fly, without having to go into the source each time?
Thanks.




Reply With Quote