CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Crystal Reports

  1. #1
    Guest

    Crystal Reports

    Sir

    1. How to pass a recordset to a crystal report rather refering to a table
    2. How to pass the memory variable to crystal report.
    3. How to log on a ODBC server through program.

    Please do the needful at the earliest.

    [email protected], [email protected]
    [email protected], [email protected]


  2. #2
    Join Date
    May 1999
    Posts
    8

    Re: Crystal Reports

    Hai,

    Insert formula name in crystal report, In vb run time set value to that formula by using

    Crystalreport1.Formulas(0) = "MyFormula = 'Myvalue'"

    Index should begin from zero.

    for more information. Refer Formulas (Find) in VB online help.

    MailID: [email protected]

    Best Regards.
    K.Babu

    babs

  3. #3
    Guest

    Re: Crystal Reports

    For Sending memory variable to report :
    Create a parameter field in the report (suppose this is AccCode).
    Use can set this Parameter field from VB using the parameterField property of the custom control.

    e.g:
    Cr1.ParameterFields(0) = "acccode;300001090;true"

    Regards
    Prabhakar



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured