Hi,
i use this simple code in personal.xls when excel is opened.
this works fine when one instance of excel is open, if however I need to open another excel on the same machine, it says personal.xls is readonly, how can i get another instance to open without any popups appearing and not to save changes, as i have the coding below when excel is closed.
Hope this is of use, Rob.![[yoda] [yoda] [yoda]](/data/assets/smilies/yoda.gif)
i use this simple code in personal.xls when excel is opened.
Code:
Sub auto_open()
Call RightClickMenu
Call RightClickMenu2
Call CreatePersonalMenu
End Sub
this works fine when one instance of excel is open, if however I need to open another excel on the same machine, it says personal.xls is readonly, how can i get another instance to open without any popups appearing and not to save changes, as i have the coding below when excel is closed.
Code:
Sub auto_close()
On Error GoTo errhand
ThisWorkbook.Save
errhand:
Exit Sub
End Sub
Hope this is of use, Rob.
![[yoda] [yoda] [yoda]](/data/assets/smilies/yoda.gif)