COM object MS Publisher

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • COM object MS Publisher

    Weet iemand welk COM-object ik van MS Publisher moet aanspreken om de eigenschappen (bestand / eigenschappen) van een publisher-document uit te lezen?


    De volgende code heb ik reeds middels PHP gemaakt.

    $instance = new com("publisher.application");
    $instance->Open("C:\\xxx.pub");
    $instance->ActiveWindow->Visible = 0;
    $instance->ActiveDocument->SaveAs("C:\\test.txt", 6, 0); // werkt ook niet...
    $instance->ActiveDocument->Close();
    $instance->Quit();
    $instance->Release();
    $instance = null;

  • #2
    wow

    And now in english please

    php-Entwicklung | ebiz-consult.de
    PHP-Webhosting für PHP Entwickler | ebiz-webhosting.de
    die PHP Marktplatz-Software | ebiz-trader.de

    Kommentar


    • #3
      Hi,

      sorry, I´m not sure. But try this:

      PHP-Code:
      $instance->ActiveDocument->SaveAs("C:\\test.txt"/*, 6, 0*/); // werkt ook niet... 
      MSDN -Documentation:
      ExcelSheet.SaveAs "C:\TEST.XLS" // for excel in VBA

      so I geece Publisher SaveAs-function must be working in same way.

      Hope, I can help you.

      Blaster
      Yuppi, endlich Elite ...

      Kommentar

      Lädt...
      X