Hello all,
I'm not sure how to instantiate and use a Windows Script Component from
Delphi. I've tried the following -
procedure TestWSC;
var
Writer: IUnknown;
begin
Writer := CreateOLEObject('MyLittleWriter.wsc');
//...
end;
- but then of course I can't use the methods of the component. What is
the correct way to do this?
Thank you in advance....
--Ray.