Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling an Activex component from perl

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am using perl to create an ActiveX object, then call methods on it. If I pass a string from perl, it will be received by the ActiveX component as a BSTR. This is fine, I can easily make use of the string when inside the C++ context, and return it back to perl.

If I pass a perl hash from perl, how will it be received by the ActiveX component?

my $obj = $Server->CreateObject('MyObject.Test');

$obj->doStuff('name' => 'value');
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top