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 TouchToneTommy 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: *

  • Users: Crider
  • Content: Threads
  • Order by date
  1. Crider

    Conditional HTML Pages

    I want to run an ASP file in the <SCRIPT> block if the browser has scripting enabled. If scripting is disabled, I want to show an HTML page indicating that. I've tried a number of different things and it just won't work. Basically, what I need is to conditionally show page 1 or page 2...
  2. Crider

    BCP

    I have a text file consisting of 7 fields that are all defined as character. The field, FIELD7, defined in the text file layout as char(6) is defined as INT in the SQL Server 2000 table. I have two rows in the text file. My first problem is when I run the Bulk Copy command, the value of...
  3. Crider

    Failed to open a rowset

    I am working on forms which have a lot of sub reports. Because of the amount of data, there will be times when some of my stored procedures don't return a rowset simply because no data exists for that person on that part of the form. Is there a way within Crystal to easily tell Crystal to...
  4. Crider

    Getting a Report on a Crystal Report

    I've been working on forms in Crystal where I'm using a lot of sub-reports and formulas. As a result, I was wondering if there was anything within Crystal, or some other utility where I can generate a report of everything used in a crystal report. Things such, all formulas and their code, all...
  5. Crider

    Database Connection

    I have been working on forms that have lots of sections. I am developing a given form in sections building the stored procedures as I go along. I am also using sub reports in these sections because of the nature of the forms. I just find it easier and feel I have more control. My problem is...
  6. Crider

    Null Values

    I have formula structured as follows assuming the following values: FieldA = 'Hello' FieldB = 'there ' FieldC = 'dude' IF NOT ISNULL(FieldA) THEN FieldA + CHR(13) + CHR(10) + IF NOT ISNULL(FieldB) THEN FieldB + CHR(13) + CHR(10) + IF NOT ISNULL(FieldC) THEN FieldC + CHR(13) +...
  7. Crider

    Renaming a Stored Procedure

    I want to rename the stored procedure that is currently driving a given crystal report. When I change the report to use the renamed SP, it blows all my report fields away coming from the SP. The SP is identical to what the report uses now. It's just that the DBA would like me to rename the...

Part and Inventory Search

Back
Top