Hey Eventure
This looks freeking awsome !
Can you please add some logging to your subs so we can start debugging Excel 2013 VBA / Macros with you ?
------
Private Sub Workbook_Open()
'clear my "event" log text file
Dim logFileName As String
Dim logBuffer As Integer
logFileName = ThisWorkbook.Path & Application.PathSeparator & "MyLogFile.txt"
logBuffer = FreeFile()
Open logFileName For Output As #logBuffer
Print #logBuffer, "File Opened for Use at " & Format(Now(), "dd-mmm-yyyy hh:mm:ss")
Close #logBuffer
End Sub
----------
I can open it fine in 32bit Excel 2013 and it runs for a few mouse clicks before event failures start. A log will hopefully give us a starting point to investigate.
This looks freeking awsome !
Can you please add some logging to your subs so we can start debugging Excel 2013 VBA / Macros with you ?
------
Private Sub Workbook_Open()
'clear my "event" log text file
Dim logFileName As String
Dim logBuffer As Integer
logFileName = ThisWorkbook.Path & Application.PathSeparator & "MyLogFile.txt"
logBuffer = FreeFile()
Open logFileName For Output As #logBuffer
Print #logBuffer, "File Opened for Use at " & Format(Now(), "dd-mmm-yyyy hh:mm:ss")
Close #logBuffer
End Sub
----------
I can open it fine in 32bit Excel 2013 and it runs for a few mouse clicks before event failures start. A log will hopefully give us a starting point to investigate.