I inherited some jscript. I don't know much about it. The following
code:
var o = new ActiveXObject("ASCMenu.Application")
o.DoCmd(MyString);
seems to hook up with an ActiveXObejct that is currently running.
Application is a class in the object which is VB6 and DoCmd is a method
of the class. I want to hook up with a .Net Executable instead but I
don't know the equivalent code for a .Net object. Can anyone help?
Bob
You may implement a serviced component. You can find more information at
msdn for ServicedComponent abstract class
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystementerpriseservicesservicedcomponentclasstopic.asp

Signature
HTH
Thanks,
Yunus Emre ALPÖZEN
BSc, MCSD.NET
Microsoft .NET & Security MVP
>I inherited some jscript. I don't know much about it. The following
> code:
[quoted text clipped - 8 lines]
>
> Bob