in reply to Re: DLL or VB to Perl
in thread DLL or VB to Perl
I have made VBS:
Set objLib = CreateObject("CortalConsors.TradingAPI.VersionInfo") name = objLib.GetAssemblyFullname() MsgBox name
The VBScript Converter translate this:
#!perl use Win32; use Win32::OLE; $objLib = Win32::OLE->new('CortalConsors.TradingAPI.VersionInfo'); #### Error: Can't resolve progID CortalConsors.TradingAPI.VersionInfo $name = $objLib->GetAssemblyFullname(); Win32::MsgBox($name);
I have install "SystemScripter" --> This tell me (If I want load the
COM-Object 'CortalConsors.TradingAPI.VersionInfo'):"Typelibrary Missing"
and can not resolve the details from COM.
In "SystemScripter" can I give the path of TLB by hand and it's work
Both (DLL and TLB) are in registry --> maybe not right !?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: DLL or VB to Perl
by Anonymous Monk on Jun 16, 2014 at 19:33 UTC | |
by joago (Initiate) on Jun 18, 2014 at 07:37 UTC | |
by Anonymous Monk on Jun 18, 2014 at 08:10 UTC |