sub class_globals
dim oError as cErrorHandling
oError.initialize
end sub
The parser allows to initialize in the global section. It seems to work. However, when I tried this in a service module, it crashed my app. I had to remove the initialize from the globals section of the service module then it worked.
dim oError as cErrorHandling
oError.initialize
end sub
The parser allows to initialize in the global section. It seems to work. However, when I tried this in a service module, it crashed my app. I had to remove the initialize from the globals section of the service module then it worked.