Ensuring a service is started

airblaster

Active Member
Licensed User
Longtime User
Is there any way to ensure that a service is started?

I can't use CallSubDelayed because the sub needs three parameters and CallSubDelayed only supports up to two parameters. I'm using Informatix' CallSubX (included in ULV) instead.

E.g. I'm calling a sub that uses a service right after the call to StartService.
However, even though it appears after StartService in the Code, it is called before StartService is finished. As a result, the code in the service module isn't executed (CallSubX fails silently)
 
Top