Micro Niche Builder
Closed Thread
Results 1 to 2 of 2

Thread: Crystal report

  1. #1

    Default Crystal report

    Is it possible to create crystal report in php?
    If yes than how?
    Thanx in advance


  2. SEO Software

  3. #2

    Default

    We can make crystal report like this...refer it...!!

    $crapp = new COM("CrystalRuntime.Application.9");
    $creport = $crapp->OpenReport("C:\\Foxserv\\www\\Etat1.rpt", 1);

    $creport->DiscardSavedData();
    $creport->ReadRecords();

    echo 'Driver Name : ' . $creport->DriverName.' **<br>';
    echo 'Printer Name : ' . $creport->PrinterName.' **<br>';
    echo 'Port Name : ' . $creport->PortName.' **<br>';

    $creport->SelectPrinter("HP LaserJet 1100(MS)", "HPLocal", "LPT1:");
    $creport->PaperOrientation = 0;

    $creport->PrintOut(False);
    echo 'creport->PrintingStatus->Progress : ' . $creport->PrintingStatus->Progress . '<br>';

Closed Thread

Similar Threads

  1. How to report someone for copyright infringement
    By Kay in forum Legal Matters
    Replies: 5
    Last Post: 03-05-2010, 09:12 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts