Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Every body help me please, how to create this view with Crystal Report and
C# using MS. Visual Studio 2010. I have Setting the crystal report in my visual studio
but i can not create this design. i use oracle as a database service.

Data Patient
Name: Aura Bale
Address: Tokyo Street, No.77 Alabama.

Data Transaction
No. Description Value
1. Injection $100
2. Consultation $500
... ..... ....


n. ..... ....
Posted

No one can help you in designing it online.

We are not aware of data structure to be used and how they are related. You need to try out by yourself and then post specific issue if any. Talk to your teacher/boss for insights in case needed to start on.

For now, looks like there will be a table with group header - group having patient name and table with details of that patient. OR you can try using subreport.
Following might help:
C# Crystal Reports step by step - sureport[^]
MSDN: Crystal Reports - Tutorials and Sample Code[^]
 
Share this answer
 
Parsing Parameter for name, address and personal data of the patient.
And then use the RecordSelectionFormula for dynamic of transaction table data like this code:
C#
crystalReport.RecordSelectionFormula = "Date({transaksi1.masuk}) = Date('" + datepicker.value + "') ";  


Put the name, address and other personal data in section 1 and transaction table in section 2 of CrystalReport.rpt
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900