simoncpage
Programmer
hi all
How do I update/refresh a form automatically? for example
---------------------------------------
For Each sht In ActiveWorkbook.Sheets
frmHeader.lblsheetadd.Caption = "Sheet " & counter & " is being deleted"
counter = counter - 1
With sht.PageSetup
.LeftHeader = ""
.RightHeader = ""
.CenterHeader = ""
End With
Next sht
--------------------------------
how do i get the above to show the form counting down the sheets as all i see is a blank with the above
Thanks
Simon
How do I update/refresh a form automatically? for example
---------------------------------------
For Each sht In ActiveWorkbook.Sheets
frmHeader.lblsheetadd.Caption = "Sheet " & counter & " is being deleted"
counter = counter - 1
With sht.PageSetup
.LeftHeader = ""
.RightHeader = ""
.CenterHeader = ""
End With
Next sht
--------------------------------
how do i get the above to show the form counting down the sheets as all i see is a blank with the above
Thanks
Simon