Hi Everyone,

I want to communicate with COM, that is the following:
coclass CJob {
 interface IJob;
 interface ISourceCollection;
};
by Win32::OLE like
$job = Win32::OLE->new ('SyncService.Job.1') || die "Unable to create job.\n";
if (Win32::OLE->LastError != 0) {
        print "Unable to new a job.\n";
        exit 1;
}

The default interface is IJob. My question is how to get the ISourceCollection?

Regards,

Like

_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to