Help for this page

Select Code to Download


  1. or download this
    use Win32::OLE;
    $wd = Win32::OLE->GetObject("mydll")
         || die "Unable to load Win32::OLE" . Win32::OLE->LastError;
    
  2. or download this
    use Win32::OLE;
    $wd = Win32::OLE->GetObject("mydll.dll")
         || die "Unable to load Win32::OLE" . Win32::OLE->LastError;
    
  3. or download this
    use Win32::OLE;
    $wd = Win32::OLE->GetObject("c:\\windows\\system32\\mydll.dll")
         || die "Unable to load Win32::OLE" . Win32::OLE->LastError;    us
    +e Win32::OLE;