After upgrading from Crystal 10 to 11 I found that when I tried to run a report (I'm using Visual Studio .NET) i got a database logon prompt.
Didn't find any help on the web and after a painful 3 days of frustration and hair pulling I finally found the answer. Thought I'd log it here to save...
My report does a lot of complex calculations and at the end there is a 'Total' formula.
I want to be able to read that value FROM the report in VB.NET after the report has been printed and use it for another function.
Is this possible?
The closest I've got is this...
Incase anyone has the same problem this is the solution....
(you only need to do this once in your VB.net project)
If System.Globalization.CultureInfo.CurrentCulture.LCID.ToString = 1041 Then
CrystalDecisions.Shared.SharedUtils.RequestLcid = 2057
End If
1041 is the locale id for...
I have a problem where I am setting my date fields to have a custom format of ddMONyy eg 10Jun05 which works fine in the Uk & the US but in Japan the format is overridden and the dates come out like this: ddmyy eg 10605. Any ideas why this happens and how I can stop it?
Many thanks
Thanks for your help. I can see it would work fine by I have an added complexity - my report does have a group area in it, which can be suppressed (controlled by a user parameter). So i need to say:
For Each crxArea In crxRpt.Areas
If crxArea.Kind = crGroupFooter Then
IF NOT...
I want to hide the Group Tree (in the viewer control) at run time if there are no groups. Does anyone know how I can do this?
I know I need to say DisplayGroupTree = false but i dont know how to do the 'if no groups' bit.
I'm using VB.Net and CR10.
Thanks
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.