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. Martin97

    CR 8.5 Release License

    By default, i think a session timeout after 20 minutes. You can change this setting in your code with this line: Session.TimeOut = 5 Where "5" is the number of minutes where a session remain valid. After that, it is release. Just put this line at the begining of the page where you...
  2. Martin97

    Because SubReports doen´s hava a page Header...

    Crystal have a KB article about this, you can read it here http://support.crystaldecisions.com/kbase/c2005103.asp Basicly, what you need to do is create a formula with this; WhileReadingRecords; " " then you insert a group base on this formula with the option "Repeat Group...
  3. Martin97

    Crystal Reports 9 ??

    One thing i know is that crystal 8.5 standard does not support dictionaries, so if you have reports that use a dictionary, you'll need pro or dev version for them to work. Martin
  4. Martin97

    Crystal 8.5 License

    The default timeout for a session is 20 minutes. You can change it in ASP by doing session.timeout = 10 Then, the session will be destroy after 10 min and it will free up a license. You can also use this to release a license when a report had been view set session("oPageEngine") =...
  5. Martin97

    Sorting Problem

    Instead of editing the SQL, you can sort your field in Crystal Reports. In the menu, choose "report" --> "Sort records" Then, select the field you want to sort in your detail section and change the sort direction from there. make sure you select the "use indexes or...
  6. Martin97

    Sybase 11.9.2 Stored Proc Error through a DSN

    Hi, They are 2 articles about this on Crystal decisions website. http://support.crystaldecisions.com/kbase/c2005303.asp http://support.crystaldecisions.com/kbase/c2003704.asp The second one seems to be exactly what you're looking for. They say that you have to download the file...
  7. Martin97

    Can't see Oracle Driver even though Oracle Client is installed

    The latest version of p2sora7.dll is 8.6.1.50 dated 05/09/2002 If you want to download it, go to the crystal decision website(http://support.crystaldecisions.com/downloads) and look for the file "dbexdrvr.zip". This file contain the latest version of all the database driver and export...
  8. Martin97

    Redirects making ugly folders

    Just throwing some idea :) What about creating a virtual directory for each folder you want? ex: In IIS, create a virtual directory with the alias "cars" which redirect to your root web folder. Create another one with the alias "money" that also redirect to the root folder...
  9. Martin97

    Crystal Reports on the Web

    To show the Export button, use; <param name=&quot;EnableExportButton&quot; value=&quot;1&quot;> value=1 to show it and value=0 to hide it. HTH, Martin
  10. Martin97

    valid XHTML flash Object

    I don't think there's a solution for this :( What you can do is remove the embed tag and put a link like &quot;netscape user click here&quot;, and you redirect them to a page with the flash movie with the embed tag. Of course this page won't validate but at least your main page will be valid...
  11. Martin97

    suppressed records and record count

    Hi, Use the PreviousIsNull function instead like this previousisnull({STUDENT_ALL_V.STUDENTID}) HTH, Martin
  12. Martin97

    Trim &quot;+/-&quot; off a qty

    Hi, try this to extract the number; QTY :={PODetails.Qty}[4 to lenght({PODetails.Qty})]; I dont know if this work in ver 4.5. I think it's just a shortcut to the mid function but, can't hurt to try :) let us know if it work. Martin
  13. Martin97

    Urgent! Help with &quot;ToText&quot; &amp; formatting

    The formula above use the basic syntax, since you have CR6, create a new formula and do this; numbervar x; stringvar tmpString; tmpString :={BANK.BNK_NUM}+ToText({PAYMENT.CHK_NUM},0,&quot;&quot;); x :=10-len(tmpString); tmpString :=replicatestring(&quot;0&quot;, x)&tmpString; It's the same...
  14. Martin97

    Using quotes in a text string

    Use a single quote at the begining and the end of your text, like this '&quot;Deferred Comp Plan&quot;' and your text should appear in quotes
  15. Martin97

    Can only get a background graphic on page 1

    Try to put your graphic in the page header instead of the report header. This way, your graphic should print on every page
  16. Martin97

    CRW32 caused exception 10H in module CRW32.EXE

    Hi, we also had this problem some time ago, just download the upgrade. go to crystaldecisions website and look for the file &quot;SI867_7021b_setup.zip&quot; for CR Version 7 with MR1 &quot;sr858_8010c_setup.zip&quot; for CR Version 8 You can also look at the Knowledge Base article ID C2005091...
  17. Martin97

    Parameters in Crystal 8

    Hi, I think there's a maximum number(more or less 500) of default values that you can pick in a parameter. I doubt there's a way to add more, but if it's possible, i would like to know too.

Part and Inventory Search

Back
Top