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...
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...
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
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") =...
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...
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...
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...
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...
I don't think there's a solution for this :(
What you can do is remove the embed tag and put a link like "netscape user click here", 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...
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
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,"");
x :=10-len(tmpString);
tmpString :=replicatestring("0", x)&tmpString;
It's the same...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.