![]() |
#2
|
||||
|
||||
![]()
Where are you running the macro from that creates the document?
If you run it from Word, then you are going to have an empty Word window, or the document present that you are running it from. As for the progress indicator, you can show the form modeless and it will remain displayed while stuff happens, but you are going to have to provide updates to that display in order for the bar to change. You can download a progress bar userform from the link, and use the following code to update it. Option Explicit Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Sub Macro1() Dim oFrm As frmProgress Dim PartDone As Double Dim i As Long Set oFrm = New frmProgress oFrm.Show vbModeless Application.ScreenUpdating = False 'Below is the part that reflects the updating of the form - here a simple loop For i = 1 To 10 Sleep 1000 ' a one second delay PartDone = i / 10 oFrm.lblProgress.Width = oFrm.fmeProgress.Width * PartDone oFrm.Caption = "Processing item " & i & " of " & 10 DoEvents Next i Unload oFrm End Sub |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
INCLUDEPICTURE with Mail Merge - showing same image on every document | ccordner | Word | 0 | 10-23-2013 06:42 AM |
![]() |
sour | Word | 1 | 04-08-2013 04:14 AM |
How to create a progress bar | AfterLife6 | Excel | 1 | 07-31-2012 08:43 PM |
Object set to invisible yet I can still move its (invisible) animation paths?? | seanspotatobusiness | PowerPoint | 0 | 05-23-2011 03:39 AM |
Document showing up with all pictures missing? | jplot | Word | 0 | 12-02-2009 06:50 AM |