Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Am I able to keep a macro running even if a userform is showing,
I have put a code in the this workbook module userform1.show call start Thanks in advance Greg |
#2
![]() |
|||
|
|||
![]()
you can put a macro on the userform on activate event
Private Sub UserForm_Activate() call start End Sub double click on the form to get access to the code window Eric -----Original Message----- Am I able to keep a macro running even if a userform is showing, I have put a code in the this workbook module userform1.show call start Thanks in advance Greg . |
#3
![]() |
|||
|
|||
![]()
Greg,
No you cannot, the userform has to exit for the next line of code to be invoked. This is typical of the problem with progress bar forms, and the solution is generally to fir up the form, and then run the macro from within the form, either from the Activate event, or based upon some event happening. -- HTH RP (remove nothere from the email address if mailing direct) "Greg B" wrote in message ... Am I able to keep a macro running even if a userform is showing, I have put a code in the this workbook module userform1.show call start Thanks in advance Greg |
#4
![]() |
|||
|
|||
![]()
Thanks that was much better
Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text box question | Excel Discussion (Misc queries) | |||
Question about combining data from multiple workbooks into one rep | Excel Discussion (Misc queries) | |||
How can I run a macro in the background whilst a UserForm is visib | Excel Discussion (Misc queries) | |||
UserForm TextBox/ComboBox question | Excel Discussion (Misc queries) | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions |