Click to See Complete Forum and Search --> : Urgent!!Please Help Me with Crystal


kenone
February 21st, 2007, 02:48 AM
My Application is being developed using VB.NET 2002 and crystal 9.0 .I just want to be able to launch my crystal report by clicking a command button from my vb.net form .My Crystal report has got only one 'Parameter'(IDNo) of String data type.How can I pass this parameter so as to launch a report at a button click through vb.net???
Please help me urgently!!
Appreciating.....
kenone

kamran123
February 23rd, 2007, 06:20 AM
i worked on this task 8 months ago.i dont remeber very well.You should use seperate form which will have a report viewer ,The Report you desinged will be added in your project.Report Viewer object property source will have the value object of report you desinged

rptCustomerEnquiry rp1=new rptCustomerEnquiry();
rp1.parameters[0].value="";

Reportviewer.source= rp1.

------
I will tell you exact code tommorow.