Hello,
I would like to allow a UserForm to continue after a defined wait period of say 30s if the User does not manually click the continue button.
After reading some other posts I have tried things like:
UserForm1.Show vbmodeless
DoEvents
Application.Wait (Now + TimeValue("0:00:30"))
UserForm1.CommandButton1_Click

Then code here for macro to continue on etc
unfortunately I still cannot get this to work, would you be able to advise on how I might achieve this.
Thanks