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 gkittelson 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. paladin127

    System recovery on an HP Pavilion a300n

    I am trying to recover a pavilion a300n using the recovery image on the hard drive. Whe I boot up the computer It says to press F1o to start the system recovery. I press F10 (many times) and the computer continues on and tries to boot normally. I heard a rumor that there may be another key to...
  2. paladin127

    How to pass values from subreport to main report?

    I am trying to design a customized aging report for AR and had to us a subreport to sum up records that are related to the same document number. Report works well so far with the exception of subtotals. Now in the report, the subreport may run several times before the subtotals need to be...
  3. paladin127

    Totals in Group Footers

    I got it now. I created a Summary in the report footer and then created a formula to read from this total. Thanks for the tip.
  4. paladin127

    Totals in Group Footers

    I have a question regarding group totals. Is it possible to add a field in the group totals section that shows the grand total from the end of the report? I am trying to generate a group footer that shows the group's total and also want to show the report's total so that I can show the...
  5. paladin127

    Integer Conversion

    Formatting a field being displayed was no a problem. Displaying that field in a formula field was an issue. Found a way around it though using the ToText() command. E.g. ToText(value, 0, "") Thanks.
  6. paladin127

    Integer Conversion

    I noticed in Crystal that there is no fuction to convert a number to integer. If I display a field which is an integer in a report, it converts it to double (with a decimal and 2 zeros). If I try to manipulate this field in a formula field, they have the following: CDbl, CCur, CBool, CDate...
  7. paladin127

    Windows 2000 service hang

    I have a service (Crystal Reports Application Server) that seems to have stopped responding. When I try stop the server to restart it, it stays at a 'stopping' status and never stops. Rebooting the server will free it up but this is 2 days in a row now and this server is a major production...
  8. paladin127

    Cannot save in CR 10

    It does not work either way. The disk icon does not grey out either. If I go to close the report, it asks if I want to save it. I hit yes and nothing happens either.
  9. paladin127

    Cannot save in CR 10

    I have come across this problem a handful of times and it very frustrating. Sometimes when I start up a new report and work on it for a period of time, I go to save the report and nothing happens!! It seems as if the save function is not working. If I close the report (losing all my work) and...
  10. paladin127

    Printing directly to a printer

    This works great. Thanks so much.
  11. paladin127

    Printing directly to a printer

    I am running Crystal Enterprise 10 on a web server that is housing a number of Crystal reports. I have a web application that accesses these reports via the Cystal Reports Viewer. Everything is working fine except printing is anoying. When you click the printer icon in the browser, a window...
  12. paladin127

    Select inquiry

    This all worked out well. Thanks to all for your help.
  13. paladin127

    Select inquiry

    Hmm. I started something like this but I have another problem. The Group Sort Expert is greyed out. I have the records grouped by customerid. Why would this feature be disabled? I think that once I get that, the report should be just what I need. Thanks.
  14. paladin127

    Select inquiry

    This may be easy but for some reason I can not seem to figure it out. I am trying to create a report (CR 10) that will list the top 10 customers in sales for a selected time frame. Basically I want to list customers from a customers table and sum up all of their sales for a specific time...
  15. paladin127

    Special Selction Criteria

    Almost. Modified to the following: ******************************************* if {?SalesID} <> 0 then {Sales.SalesID} = {?SalesID} else true and if {?SiteID} <> 0 then {Sites.SiteID} = {?SiteID} else true and if {?Forcast} <> 0 then {Forcast.ForcastID} = {?Forcast} else true...
  16. paladin127

    Special Selction Criteria

    I have a slight problem with selecting data according to a specific criteria. I have created a report with 3 parameter fields. the values to those fields are passed to the report from a web page (using CE 10 Embedded Edition). Now in each of the 3 fields, I want to be able to select a...
  17. paladin127

    Passing values to a report

    Found the Problem. Turns out it was variable type problem. Used the following line with success: NewValue.Value = CInt(request.form("SiteID")) Need to make sure the variable is of matching type.
  18. paladin127

    Passing values to a report

    I am running Crystal Enterprise 10 Embedded edition and am trying to run a report from ASP. I am using the following code: ************************* <% reportname = "wmsal001.rpt" %> <!-- #include...

Part and Inventory Search

Back
Top