Hi Guys
I'm opening another workbook via vb and it want it to remain open and accessible whilst this workbook is open
Set databook = CreateObject("excel.Application")
databook.Workbooks.Open Filename:= _
("N:\databaseinfo.xls"), _
local:=True
databook.Visible = False
databook.Application.DisplayAlerts = False
im opening the wb as above, but when i move onto a different module 'databook' is no longer accessing the open book. Is there anyway to keep databook open for all modules?
Thanks
I'm opening another workbook via vb and it want it to remain open and accessible whilst this workbook is open
Set databook = CreateObject("excel.Application")
databook.Workbooks.Open Filename:= _
("N:\databaseinfo.xls"), _
local:=True
databook.Visible = False
databook.Application.DisplayAlerts = False
im opening the wb as above, but when i move onto a different module 'databook' is no longer accessing the open book. Is there anyway to keep databook open for all modules?
Thanks