Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am looking for the VBA to identify if a workbook is already open and, if
not, to open it, otherwise to open the workbook window. I have:- i) Worksbooks.Open("Filename.xls") and ii) Windows("Filename.xls).Activate but I require somethiing to stop the 'overwrite' message popping up after running i), if already open, and then running ii) Hope this makes sense Any help appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi SyZyGy
One way You can test it with a function Function bIsBookOpen(ByRef szBookName As String) As Boolean ' Rob Bovey On Error Resume Next bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing) End Function Sub File_Open_test() If bIsBookOpen("Book11.xls") Then MsgBox "the File is open!" Else MsgBox "the File is not open!" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... I am looking for the VBA to identify if a workbook is already open and, if not, to open it, otherwise to open the workbook window. I have:- i) Worksbooks.Open("Filename.xls") and ii) Windows("Filename.xls).Activate but I require somethiing to stop the 'overwrite' message popping up after running i), if already open, and then running ii) Hope this makes sense Any help appreciated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ron
Thanks for the response I do not want the user to have to test if the workbook is already open. The default microsoft 'overwrite' message prompt is effectively doing this. My requirement is to hide this test from the user and just open the workbook window regards - SyZyGy "Ron de Bruin" wrote: Hi SyZyGy One way You can test it with a function Function bIsBookOpen(ByRef szBookName As String) As Boolean ' Rob Bovey On Error Resume Next bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing) End Function Sub File_Open_test() If bIsBookOpen("Book11.xls") Then MsgBox "the File is open!" Else MsgBox "the File is not open!" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... I am looking for the VBA to identify if a workbook is already open and, if not, to open it, otherwise to open the workbook window. I have:- i) Worksbooks.Open("Filename.xls") and ii) Windows("Filename.xls).Activate but I require somethiing to stop the 'overwrite' message popping up after running i), if already open, and then running ii) Hope this makes sense Any help appreciated. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am looking for the VBA to identify if a workbook is already open and, if
not, to open it, otherwise to open the workbook window. Sub File_Open_test() If bIsBookOpen("Book11.xls") Then 'you open code Else 'your activate code End If End Sub The code is doing what you want if you add the open and activate code line -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... Ron Thanks for the response I do not want the user to have to test if the workbook is already open. The default microsoft 'overwrite' message prompt is effectively doing this. My requirement is to hide this test from the user and just open the workbook window regards - SyZyGy "Ron de Bruin" wrote: Hi SyZyGy One way You can test it with a function Function bIsBookOpen(ByRef szBookName As String) As Boolean ' Rob Bovey On Error Resume Next bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing) End Function Sub File_Open_test() If bIsBookOpen("Book11.xls") Then MsgBox "the File is open!" Else MsgBox "the File is not open!" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... I am looking for the VBA to identify if a workbook is already open and, if not, to open it, otherwise to open the workbook window. I have:- i) Worksbooks.Open("Filename.xls") and ii) Windows("Filename.xls).Activate but I require somethiing to stop the 'overwrite' message popping up after running i), if already open, and then running ii) Hope this makes sense Any help appreciated. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Ron
It took a bit of time for my brain to get into gear! Regards - SyZyGy "Ron de Bruin" wrote: I am looking for the VBA to identify if a workbook is already open and, if not, to open it, otherwise to open the workbook window. Sub File_Open_test() If bIsBookOpen("Book11.xls") Then 'you open code Else 'your activate code End If End Sub The code is doing what you want if you add the open and activate code line -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... Ron Thanks for the response I do not want the user to have to test if the workbook is already open. The default microsoft 'overwrite' message prompt is effectively doing this. My requirement is to hide this test from the user and just open the workbook window regards - SyZyGy "Ron de Bruin" wrote: Hi SyZyGy One way You can test it with a function Function bIsBookOpen(ByRef szBookName As String) As Boolean ' Rob Bovey On Error Resume Next bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing) End Function Sub File_Open_test() If bIsBookOpen("Book11.xls") Then MsgBox "the File is open!" Else MsgBox "the File is not open!" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "SyZyGy" wrote in message ... I am looking for the VBA to identify if a workbook is already open and, if not, to open it, otherwise to open the workbook window. I have:- i) Worksbooks.Open("Filename.xls") and ii) Windows("Filename.xls).Activate but I require somethiing to stop the 'overwrite' message popping up after running i), if already open, and then running ii) Hope this makes sense Any help appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
workbooks.open function fails to open an existing excel file when used in ASP, but works in VB. | Excel Programming | |||
How to identify variable workbooks in an excel Addin | Excel Programming | |||
Excel 2003 Workbooks.Open with CorruptLoad=xlRepairFile fails on Excel 5.0/95 file due to Chart, with Error 1004 Method 'Open' of object 'Workbooks' failed | Excel Programming | |||
Identify if another user has spreadsheet open - in VBA | Excel Programming | |||
Workbooks.Open / .Open Text - How do you stop the .xls addition? | Excel Programming |