Help for this page

Select Code to Download


  1. or download this
    Dim Obj as Object
    Set Obj = CreateObject("ProgID_of_your_Perl_DLL.app")
    Obj.CoolRoutine
    
  2. or download this
    use Win32::OLE;
    
    my $obj = Win32::OLE->CreateObject('ProgID_of_your_Perl_DLL.app');
    
    $obj->CoolRoutine();