Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
I don't know if you intended it, but take a look at your code:
Notice that all the parameters on the declaration statement have been commented out. Remove the apostrophe and that should correct it.
Those parameters are required for OnLogError event handlers to work. You may not use them necessarily, but they are part of the event handler.
Sub GeneralEvents_OnLogError'(Sender, LogParams)
Notice that all the parameters on the declaration statement have been commented out. Remove the apostrophe and that should correct it.
Those parameters are required for OnLogError event handlers to work. You may not use them necessarily, but they are part of the event handler.