Glory
Well-known Member
- Joined
- Mar 16, 2011
- Messages
- 640
I found a great way to supress "Now Printing" dialogue windows here.
But there's a problem. I'm using a "progress bar" userform to show the progress of a macro.
For some reason the function shown above prevents the userform from updating, instead of just preventing the "Now Printing" dialogue windows from popping up.
Here's an example of the sort of code I'm running:
Does anyone have any suggestions about how I should modify that UDF up top?
But there's a problem. I'm using a "progress bar" userform to show the progress of a macro.
For some reason the function shown above prevents the userform from updating, instead of just preventing the "Now Printing" dialogue windows from popping up.
Here's an example of the sort of code I'm running:
Rich (BB code):
For i = 1 to 10
fncScreenUpdating False
Sheet1.PrintOut
fncScreenUpdating True
ProgressBar = i * 20
Label1.Width = ProgressBar
Next
Does anyone have any suggestions about how I should modify that UDF up top?