Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ตัวอย่างรายงานจาก Crystal Report มันรันแล้วไม่มีการแสดงข้อมูลให้ครับ



 

ตัวอย่างรายงานจาก Crystal Report มันรันแล้วไม่มีการแสดงข้อมูลให้ครับ

 



Topic : 048400



โพสกระทู้ ( 58 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook Hi5



ผมมีโค๊ดแบบนี้

Code (PHP)
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<html><body BgColor="aqua" >
<form Name="Fm" action="CrysHtm.php">
<center><Font size=5><B><i><u>ตัวอย่างรายงานจาก Crystal Report</u></I></B></Font></center>
<select name="combo" size="1">
<option >เลือกไฟล์รายงาน</option>

<option value="Reportday.rpt" >Reportday.rpt</option>

</select>
Formula : <input type="text" name="Tx" size=40>
<input type="button" name="Bn"  value="Refresh">
</form>
<Div id="Dv" ></Div>
<Hr>
<OBJECT  classid = "clsid:CA281D3B-CA98-11CF-9570-00AA0018EA26"
        CODEBASE = "ActiveXViewer.cab#Version=1,0,0,0"
  id      = "CR1"
  align  = center
  width  = 100%
  height  = 85%
  hspace  = 0
  vspace  = 0 >

</OBJECT> 
<script language="vbscript">
dim ar
sub window_onload
Ck= document.cookie
document.cookie=""
On error resume next
if Ck<>"" then
if instr(Ck,":")=0 then
CR1.ReportFileName = Ck
CR1.GroupSelectionFormula=""
document.Fm.combo.value=Ck
else
ar=split(Ck,":")
ar(1)=replace(ar(1),"#","=")
CR1.GroupSelectionFormula=ar(1)
CR1.ReportFileName = ar(0)
document.Fm.combo.value=ar(0)
Dv.innerText="GroupSelectionFormula : "&ar(1)
end if
end if
CR1.ShowErrors 1
if  CR1.ReportFileName<>"" then CR1.Action=1
end sub

Sub Bn_OnClick
if document.Fm.tx.value="" then
document.cookie=document.Fm.combo.value
else
ab=document.Fm.tx.value
ab=replace(ab,"=","#")
Ck=document.Fm.combo.value&":"&ab
document.cookie=Ck
end if
document.Fm.submit()
end sub
</script> 
</body></html>


ผลลัพ


จะต้องแก้ยังไงให้มันและแสดงผลได้ครับ
มันไม่รู้ว่าเกิดจากสาเหตุอะไร ถึงแสดงผลไม่ได้
ช่วยหน่อยนะครับ



Tag : PHP, CakePHP









ประวัติการแก้ไข
2010-09-08 11:16:03
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-09-08 10:47:29 By : poy213 View : 1360 Reply : 3
 

 

No. 1



โพสกระทู้ ( 58 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook Hi5

เงียบจังเลย
ช่วยผมหน่อยครับ
ไปต่อไม่ได้อ่ะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-08 11:20:26 By : poy213
 


 

No. 2

Guest


ก็คุณยังไม่ได้ดึงข้อมูลจากฐานข้อมูลมาแสดงเลยครับ
crystal ตัวมันเองไม่สามารถแสดงผลอะไรได้นะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-30 10:55:39 By : เจส
 

 

No. 3

Guest


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:49 By : thaicreate
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ตัวอย่างรายงานจาก Crystal Report มันรันแล้วไม่มีการแสดงข้อมูลให้ครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่