|
|
|
อยากได้ PHP Crystal Report ในบทเรียนไม่ม่อะค่ะ อยากได้ PHP Crystal Report ในบทเรียนยังไม่เห็นมี |
|
|
|
|
|
|
|
รออีกนิดครับ ตอนนี้กำลังทำในส่วนของ C# อยู่ครับ ถ้าเสร็จแล้วไงจะกลับไปทำให้เสร็จน่ะครับ
|
|
|
|
|
Date :
2009-03-18 16:18:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากได้เหมือนกันครับ .. ยังไงก็ขอเป็นกำลังใจให้ MR.WIN สู้ๆนะครับ
|
|
|
|
|
Date :
2009-03-18 16:49:55 |
By :
paejung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ง่า c# สู้ๆคับ ผมก็ฝึกอยู่ หลังจากดู vbมา
|
|
|
|
|
Date :
2009-03-18 20:07:38 |
By :
060414378 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ MR.WIN
ทำเร็วๆ นะค่ะ
น้องๆ รออยู่ เพราะตอนนี้โดนยาสั่งว่าให้ทำ Report สวยๆ เจ๋งๆ
|
|
|
|
|
Date :
2009-03-19 09:03:52 |
By :
paphun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
====ขอคร๊าบ..ท่านเพ่====
|
|
|
|
|
Date :
2009-03-19 16:00:01 |
By :
paphun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
// Create an Crystal Object Factory.
$o_CrObjectFactory = new COM('CrystalReports11.ObjectFactory.1');
// Create the Crystal Reports Runtime Application.
$o_CrApplication =
$o_CrObjectFactory->CreateObject("CrystalRunTime.Application.11");
// Register the typelibrary.
com_load_typelib('CrystalDesignRunTime.Application');
// Load the report.
$o_CrReport = $o_CrApplication->OpenReport('C:\Report.rpt', 1); // 1
== crOpenReportByTempCopy.
// Logon to the database.
$o_CrReport->Database->LogOnServer
(
'odbc',
'Accounts',
registryDatabaseLocations::Database('Accounts'),
registryDatabaseLocations::Username('Accounts'),
registryDatabaseLocations::Password('Accounts')
);
// Don't tell anyone what is going on when running live.
$o_CrReport->DisplayProgressDialog = False;
$s_ExportedReport = 'C:\Report.pdf';
// Run the report and save the PDF to disk.
$o_CrReport->ExportOptions->DiskFileName = $s_ExportedReport;
$o_CrReport->ExportOptions->PDFExportAllPages = True;
$o_CrReport->ExportOptions->DestinationType = 1; // Export to File
$o_CrReport->ExportOptions->FormatType = 31; // 31 = PDF, 36 = XLS, 14 =
DOC
// Assign the parameters to the report.
$m_Stuff = new Variant();
$o_CrPeriodsParam =
$o_CrReport->ParameterFields->GetItemByName('PeriodIDs', $m_Stuff);
$o_CrPeriodsParam->ClearCurrentValueAndRange();
foreach($_SESSION['tabRG_PeriodIDs'] as $i_Period)
{
$o_CrPeriodsParam->AddCurrentValue(intval($i_Period));
}
$o_CrReport->ReadRecords();
$o_CrReport->Export(False);
?>
Go to : พอจะมีบทความเกี่ยวกับ php ติดต่อกับ Crystal Report ไหมครับ
|
|
|
|
|
Date :
2011-09-25 08:41:41 |
By :
tc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|