Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help with query sql in Crystal Report!!

Status
Not open for further replies.

dcampo

Programmer
Jun 13, 2006
71
EC
Hi.

My database is Informix and I want to show reports with Crystal Report. When I create a Crystal Report with the wizard, I select in the panel [Database Expert], the option [Current Connections], then, I write the query sql. Now, If I want to use parameters (send variables between webform) to my query sql (for ex: from content of control(textbox, listbox) or from: response and querystring)),

It is possible to do this?

thanks
 
I'd recommend having a look at using the PUSH method rather than the PULL method (which is what you've described).


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
use

dim report as new reportdocument
report.load("myrpt.rpt")
report.setparametervalue("name","value")

viewer.reportsource=report
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top