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 strongm 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. ElaineRC

    Logon prompt when upgrade to crystal 11

    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...
  2. ElaineRC

    Can I read the VALUE of a formula FROM a report?

    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...
  3. ElaineRC

    Date Format problem

    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...
  4. ElaineRC

    Date Format problem

    thanks very much - will give it a try
  5. ElaineRC

    Date Format problem

    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
  6. ElaineRC

    Empty Group Tree - how do I hide if there are no groups?

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

    Empty Group Tree - how do I hide if there are no groups?

    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

Part and Inventory Search

Back
Top