Hi all
I have many forms and modules in VBA code. My code usually has a line in comment mode like
'On Error GoTo ErrorHandler
thus, this error handler is temporary disabled during the code development.
Now, I want to replace above line by using a compiler switch such as
#If DEVMODE Then
#Else...