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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. simonthompson

    Disabling the export function in a web browser

    I'm running a CR8.0 report through an html page, using just a normal URL. I'm invoking it with the activex control, but for security reasons, I don't want the user to be able to export the report, only view it in their browser. I realise init=html_page and html_frame don't allow exporting, but...
  2. simonthompson

    Passing multiple value parameters through ASP

    To get the parameters into your report, you have to first build an array of which checkboxes have been ticked. The checkboxes were build with the normal input tag: <INPUT id=theFilter name=theFilter type=checkbox value=&quot; + Filter.getValue() + selected + &quot;> where -theFilter is the...
  3. simonthompson

    Passing multiple value parameters through ASP

    To run the report, all you do is pass in the name of the report as a URL. At the end of the report name, put in the way you want it initialised (activex, html, html frames etc), and then for each of the parameters you have defined in your report, put in a prompt. They start at prompt0, and go as...
  4. simonthompson

    Passing multiple value parameters through ASP

    Yeah, that's the way I've had to do it. I couldn't find any way of making Crystal accept multi-value Number parameters, so I had to parse a string using formulas, much the same as you've done here. Thanks anyway.
  5. simonthompson

    Passing multiple value parameters through ASP

    I'm trying to call a report from an ASP page that is filtered based on a set of checkboxes. The call to the report goes fine, but Crystal (ver 8.0) only picks up on the first value in each of the prompts: i.e. [code]<A...

Part and Inventory Search

Back
Top