Sub OpenSecondaryWkb()
Dim Wkb As Workbook
Dim Path as String
On Error Resume Next
Path = ThisWorkbook.Path & "\" 'for example
[highlight]Application.EnableEvents = False[/highlight]
Set Wkb = Workbooks.Open(Path & "Workbook_To_Open.xls")
[highlight]Application.EnableEvents = True[/highlight]
'...
Set Wkb = Nothing
End Sub