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!

Recent content by wreiche

  1. wreiche

    running total at the bottom of each page

    Thanks for the help lbass. I have two problems with the running total lines. The header line includes the total for the first line on the page, which it should not. Also, the footer line does not appear on each page, only at the end of the sub-report. I tried using beforereading instead of...
  2. wreiche

    running total at the bottom of each page

    I have a subreport which generates an invoice which usually runs for several pages, one item per line. I have been asked to add a line at the top and bottom of each report page which contains the running total carried forward from the previous page (top) and the running total at the end of the...
  3. wreiche

    CR Report from ado.net dataset contains no data

    Found my problem. The second argument to OleAdapter.Fill must be specified. OleAdapter.Fill(AirspaceDataSet, "bill_airspace");
  4. wreiche

    CR Report from ado.net dataset contains no data

    Not sure what you meant by "comment out the selection". I set sqlcmd to blanks, and SetDataSource returns Command text was not set for the command object. Neither of the columns in the table contain nulls.
  5. wreiche

    CR Report from ado.net dataset contains no data

    I have a working CR report which uses an oracle database for a data source. I am modifying it to use an ado.net (visual studio 2005/C#) dataset as a data source. I am following the procedure described in Business Objects "Crystal Reports for Visual Studio .net Reporting Off ADO.Net DataSets"...
  6. wreiche

    Disconnecting Report Object from database

    I have developed a web application which uses a crystal report document to connect to the database, generate the report and export it to pdf. The application is written in .Net as a web application using c#. The report has several sub-reports (6). This all works well. However, the report...
  7. wreiche

    sub-report parameter links do not stay set

    Ooops. I forgot the hyphen in the sub-report parameter name (i.e. pm?InvoiceNumber instead of pm-?InvoiceNumber). THanks for the help.
  8. wreiche

    sub-report parameter links do not stay set

    I'm not sure I understand "have you linked to something?". I've linked a parameter in the main report (InvoiceNumber) to a parameter in the sub-report (Pm-?InvoiceNumber). For now, I've included this as a display field in the sub-report. Werner
  9. wreiche

    sub-report parameter links do not stay set

    I have a main report which contains one sub-report. I am trying to pass parameters from the main report to the sub-report by setting up sub-report links. Some of the parameters work (always the same three). With the other parameters, I define the sub-report links, but when I exit from and...
  10. wreiche

    passing parameters from subreports to sql queries

    I have it working now. I started a new report from scratch and everything works as it should. Passing parameters in crystal seems to have a lot of glitches it it.
  11. wreiche

    passing parameters from subreports to sql queries

    I have a report which does several queries based on a single date parameter supplied by the user. I would like to be able to have the user enter the date in the main report and then have the date passed to the sub reports (via edit / sub report links) This part works okay. I would also like...
  12. wreiche

    Date in SQL Query is always today's date

    I've identified the problem but haven't got a solution. I've used the same parameter name in the main report, the sub report and in the query within the subreport. CR is smart enough to determine that the parameter should only need to be entered once, but within the query it does not use that...
  13. wreiche

    Date in SQL Query is always today's date

    I am using Oracle 9.2. The problem is not with the oracle query but with what crystal does with the parameter. I tried the change you suggested (removing the trailing ") DUTY_DAYS_AIRCRAFT" from my original query and get no rows returned (because the "where mdr.rlvnt_dt =...
  14. wreiche

    Date in SQL Query is always today's date

    I am using crystal reports 11. I am using the database expert to create a virtual table using an SQL command. I am trying to pass a date as a parameter to the command, but it is always evaluated as today's date. If I print the parameter in the report header, it is correct, but if I select it...

Part and Inventory Search

Back
Top