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 SkipVought 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. FVTrainer

    DrillDownGroupLevel Function not available in 8.5?

    check out thread thread767-682614 in the Crystal Formulas forum
  2. FVTrainer

    Crystal Reports LogOnServer Error

    Actually, it was items 1 - 9 in the synopsis of the problem that I thought might be relevant to you. As for p2sodbc.dll, it should be installed in the windows\system32 folder. Crystal shouldn't be able to connect to the db without it, if you are actually using odbc to connect to the...
  3. FVTrainer

    Crystal Reports LogOnServer Error

    Take a look at this article. It may point you in the right direction. It's for CR 7, but the technologies used in CR 7 and CR 8 are similar. Sorry I can't give you a better answer, but you're using an older technology I can't model, so I'm limited in what I can suggest...
  4. FVTrainer

    Crystal Viewer DLL's

    What version of Crystal 9 are you using? The standard and professional versions do not allow you to distribute those dll's.
  5. FVTrainer

    parameters passed to SQL datasource

    First, I think we're talking apples and oranges, because the parameters you can create for command objects (i.e., within a command object) cannot be a Range type (at least it can't in CR 9). They can only hold a single value. If you've created a Crystal parameter, you can only use it in the...
  6. FVTrainer

    Crystal Reports LogOnServer Error

    Often, this sort of problem is a rights problem. The account that runs the application must have rights to SQL server. Also, verify that the ODBC connection is properly configured on the dev box and can be seen by the account that runs the application. Are you using the Automation Server...
  7. FVTrainer

    parameters passed to SQL datasource

    I think you'll need to post your entire sql command in order to get a reasonable response (I assume you mean the SQL statement in a Command object you've created in CR 9). Also, although your odbc error message includes a reference to Access, it's usually helpful if you provide info about your...
  8. FVTrainer

    Parameter Passing Does Not Work.....

    Where are you trying in your code to pass the parameter? I don't see any reference to a parameter field object in your code. Try downloading the sample vb apps at the Crystal Decision website. They will point you in the right direction...
  9. FVTrainer

    CR 8.5 Very slow access Pervasice DB

    Well, if you are actually pulling back 494,934 records to the report, then 32 seconds is pretty good performance. Your performance sounds like it is the best it is going to get. You are suffering from a bad database design (from a Crystal perspective, at least).
  10. FVTrainer

    CR 8.5 Very slow access Pervasice DB

    Pervasive db's, particularly if they are based on old btrieve files, are very sensitive to the use of indexes. (And if you are using ddf files to access the btrieve files, the ddf's need to be designed to accurately reflect the btrieve indexes.) You can get incredibly fast performance if your...
  11. FVTrainer

    How to avoid blank report in VB6

    What you need to do is use the PrintingStatus object along with the ReadRecords method. Prior to calling the PrintOut method, do the following: Dim crpPrintStatus as PrintingStatus Set crpPrintStatus = crpReport.PrintingStatus crpReport.ReadRecords If crpPrintStatus.RecordsRead > 0...
  12. FVTrainer

    I would like to Send field name clicked to sub report

    I'm not clear how the subreport is working in your report. Is it displayed in the main report? Or are you using an on-demand subreport? The sample you gave looks like it's just the data in the main report, based on your description of your grouping. And, how are you deploying the report?
  13. FVTrainer

    Refresh Problem v8.5 using RDC with VB6

    Yes, you can import an existing rpt file into the designer in vb. When you add the Crystal designer to your vb app, you get a "Report Gallery" dialog. On that dialog is an option to create a new report from an existing report. Select that option and then locate the rpt file in the...
  14. FVTrainer

    Refresh Problem v8.5 using RDC with VB6

    So you actually have no record selection formula in the report itself (there is no WHERE clause in your sql query). How many records are being returned to your report? Please clarify one other thing. Are you using an OLEDB connection to the Access database or are you passing an ADO recordset...
  15. FVTrainer

    Crystal V8.00 - Export to PDF, Any help???

    The PDF export dll for CR 8.0 was, at one time (prior to the release of v. 8.5), available from Crystal Decisions at their website. However, upon release of 8.5, they pretty much abandoned support of PDF export for CR 8.0. You might try searching the Crystal Decisions KB for info on 8.0 PDF...
  16. FVTrainer

    Summarising two separe reports in one

    Well, the first thing to do is check to see if your odbc connection supports a command object. In the Visual Linking Expert, select and logon to your odbc datasource. You should see the database name listed and then below that an item called "Add Command". If you have the Add...
  17. FVTrainer

    Refresh Problem v8.5 using RDC with VB6

    Well, something is not right. We'll explore a couple of issues. First, what version of Crystal are you using? Second, what does your record selection formula in the report look like and is it getting passed to the Access database (after running the report in the Crystal Designer, select...
  18. FVTrainer

    Summarising two separe reports in one

    What is your backend database? And are you using ODBC or OLEDB connectivity? If you are using SQL Server, Oracle, or another db that supports the use of the command object in CR 9, you could create a report based on a command object, rather than a set of tables. The command object uses a sql...
  19. FVTrainer

    Refresh Problem v8.5 using RDC with VB6

    I don't understand the need to click refresh. When you do that, you are resending the report's query to the database, which would slow down your app. In fact, the CRViewer1.Refresh call in your code should be unnecessary (and would defeat the purpose of the ReadRecords statement). Nor is the...
  20. FVTrainer

    Crystal9 Report: How do I add to VB

    Don't use the Crystal Report Control. It is a very old technology. It is no longer supported (http://support.crystaldecisions.com/library/kbase/articles/c2012637.asp) Instead use the Report Designer Component (RDC). The following kb article describes migrating from the OCX control to the...

Part and Inventory Search

Back
Top