|
|
|
เราสามารถใช้งาน Crystal report ร่วมกับ PHP ได้ป่าวอ่ะครับ |
|
|
|
|
|
|
|
ได้ครับใช้ผ่าน COM ครับ เหมือนๆ กับ Excel หรือ Word ครับ ไว้ว่าง ๆ จะทำเป็นซะตัวอย่างครับ วันก่อนนั่งทำเล่น ๆ ก็ไม่ยากำอะไรมากมายครับ
|
|
|
|
|
Date :
2010-08-05 06:36:57 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะใช้ได้นะครับ แต่ต้องลง MySQLODBC แล้วตั้งค่า Connect ผ่าน ODBC น่าจะใช้ได้ครับ
|
|
|
|
|
Date :
2010-08-05 08:59:52 |
By :
kumphan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมก็กะลังทำครับ
ระหว่าง mysql กับ crystal report ใช้ MySQLODBC แล้วตั้งค่า Connect ผ่าน ODBC
แต่พอ Connect PHP กับ crystal report นี้ซิ ยังไม่ได้เลยครับ เคยลองผ่าน COM และ vbscript แล้วแต่ทำไม่ถูก
ขอท่านผู้รู้ช่วยหน่อยนะครับ
|
|
|
|
|
Date :
2010-08-05 10:40:07 |
By :
poy213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนขอความกระจ่างเรื่อง ลงผ่าน COM ด้วยครับ ไม่เข้าใจอ่ะ ผ่าน COM คืออะไรยังไงเหรอครับ
แล้วก้อขอบคุณทุกตำตอบด้วยนะครับ
|
|
|
|
|
Date :
2010-08-05 16:49:33 |
By :
Nut_M |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ Mr.win มากครับสำหรับคำชี้แนะ
|
|
|
|
|
Date :
2010-08-06 10:28:33 |
By :
Nut_M |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:42:23 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|