hi all,
i have a procedure which creates new workbooks, process them, finally save&close. Even if i use application.screenupdating = false i see the 'file open'....'file close' in the windows bar below.
The procedure is processing hundreds files so i see this 'file flashing' in the windows bar so many times...
Anybody know how to 'hide-on-open' files ? I found the following piece of code but i'm not sure it works...


Workbooks.Open ('myfile').application.visible = false
ActiveWindow.Visible = False
Workbooks.Application.Visible = False
............