I have build a custom excel add-in and I want to check if any workbook which is opened has Workbook_Open event handled already in the workbook. Based on it if already handled I want to prompt the user with some instructions to follow. Below is the code snippet of the method used in ThisWorkbookk of user workbook.
Private Sub Workbook_Open()
'Some code user had already written here
End Sub
I already checked ThisWorkbook object, it does not have any property or list of events which are already used.
Is there any way or property to determine if the Open event of workbook is used in User workbook.