Link to home
Start Free TrialLog in
Avatar of hilltop
hilltopFlag for United States of America

asked on

NT system service???

I am familiar with srvany.exe method of allowing VB apps to run as system service.. I am looking for other methods and would like to avoid OCX's any ideas
Avatar of GuruVB
GuruVB

Hi,

One thing u can do easily.

Make the VB DLL of your service.(what all the functionality you want to put it in service, put it in VB dll) Then make VC++ NT service and from that service call u r VB DLL as if it is the external OLE component.

I am using this technique for last 2 yes and didn’t get any problem.

I hope this will help you.

PS: (In VC there are some wizards so it’s very easy to create the NT service)
listening
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hilltop

ASKER

whats the cost of .net