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 Mike Lewis 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. HorstDK

    Exporting Crystal Report using VB6

    'rep.Export False' is the correct syntax. Since you are not prompting the user for options I would suggest checking your export options. For example: rep.ExportOptions.DestinationType rep.ExportOptions.DiskFileName rep.ExportOptions.FormatType plus many format specific options
  2. HorstDK

    Specify Sort Order in VB

    I believe you will need to cycle through the table names to determine that Table 1 = "orders". However, once you have that you can use: set crxdbfield = report.database.tables.item(1).fields.getitembyname("customers")
  3. HorstDK

    displaying variable values when hovering over in debug

    If you are debugging code that has some sort of error, say an undefined variable, hovering over variables will not display values. Once you fix the error(s) the hovering will work again.
  4. HorstDK

    Prevent Verification

    I have an application that will run Crystal reports for users. For some reports, the application will change the query that the report is based on, depending on the user's choices. Details: VB 6 Crystal XI RDC Some of the queries we use run very long (over an hour) and the Crystal...

Part and Inventory Search

Back
Top