CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: jawadhashmi

Page 1 of 12 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    1,793

    Re: need help with formula

    You missed : with = while assigning Mammograpy to the resources.description.
    Use:

    if {events.event} = "MAMSCRC" and {resources.resource_type} ="thing" then {resources.description} := "Mammography"
  2. Replies
    1
    Views
    4,099

    Re: Shared Variables in a Graph

    You can not use Shared Variables in the Graphs. You have to find some alternates for it.
  3. Replies
    1
    Views
    795

    Re: String Required Web Error

    ClearQuest.THREA___EP_LIST_CKBOX_ACCURATE is numeric or string.

    If string then use quotes e.g "1"
  4. Re: Is it possible to insert a PDF file in a Crystal Report

    There is an option of adding the images at run time but never saw this before.
    The other way rounds could be:
    - You can include as link to some external file.
    - Read the whole file as object and...
  5. Replies
    2
    Views
    977

    Re: date month in english

    Did you try this ?

    datetimevar date_time := PrintDate;
    totext(date_time, "MMMM - yyyy");
  6. Re: Is it possible to insert a PDF file in a Crystal Report

    You are right the link talks about the Word Document but the same way you can insert PDF.

    Sorry for being late.
  7. Re: Is it possible to insert a PDF file in a Crystal Report

    Seems some sort of installation issue.

    Please have a look on the link below:

    http://www.tek-tips.com/viewthread.cfm?qid=560028&page=84
  8. Replies
    1
    Views
    728

    Re: Check Box display issue

    Place a Drawing Object on the report where you want to show the check box this will draw the Rectangle.

    Over the rectangle place the formula which should contain chr(252).
  9. Replies
    2
    Views
    4,243

    Re: Getting Beginning Balance.

    Use a separate report there sort by date, there you can see the balance on each date. Put in array or shared variable the balance of desired date.

    Use that shared variable in your required report.
  10. Re: Copy formula field from one report to another

    Place the formulas on the report than copy and paste on the other report.

    As well you can open the reports created in 11 in 2008.
  11. Replies
    8
    Views
    14,688

    Re: page footer only on first page

    I think there is no such option to accomplish this. You can hide the Page Footer after first page but its space can not be used by details as application has spared the space for it and on run time...
  12. Replies
    20
    Views
    3,588

    Re: Print only the subreport but not the main

    This is the structure of your Main report.



    RH [Set to show the Header & Footer]
    PHa [Show/Hide Header]
    PHb
    GHA
    GHB
    DetailsA
  13. Replies
    20
    Views
    3,588

    Re: Print only the subreport but not the main

    I am not clear about this issue. If you don't want to print the footer with the subreport which you only want to print then do as you did with the header.

    If the scenario is other than this then...
  14. Replies
    20
    Views
    3,588

    Re: Print only the subreport but not the main

    In the main reports reports header section initialize a variable.
    booleanvar show_header := true;

    now on each page header put in the suppress section formula

    not booleanvar show_header;
    ...
  15. Replies
    1
    Views
    894

    Re: data connectivity

    can you ping the machine ?

    If you can then check the firewall settings.

    If still issue persists then you have to consult your network administrator.
  16. Re: How to exclude combinations of certain lines?

    jggtz is right.

    Another simple solution just to see how many fields are zero:

    In the suppress formula you can place a check
    zero_fields := 0;

    if a = 0 then
    zero_fields := zero_fields + 1;
  17. Replies
    20
    Views
    3,588

    Re: Print only the subreport but not the main

    As I understand your requirements, you want to print the bar code at the last page below the records or on the next page after all the records are shown.

    If you want to print on the next page...
  18. Replies
    3
    Views
    1,685

    Re: Crystal reports 8.5 & 11

    There are alot of books written on Crystal Reports. Few of them are as under
    1: Sams Teach Yourself Crystal ReportsĀ® 9 in 24 Hours
    2: Mastering Crystal Reports 9
    3: Professional Crystal Reports...
  19. Re: UFL that implements this function is missing

    For XI Release 2 we put custom UFLs under

    C:\Program Files\Business Objects\Common\3.5
  20. Replies
    1
    Views
    793

    Re: Double counting running totals

    link the tables
    create group on the first tables on the user
    create group on the date in and date out of the 2nd table.

    From the first group get the user
    from the header of the first get the...
  21. Replies
    1
    Views
    5,801

    Re: Need help with multi-page report

    put the user table in the main report and create a group on the user_id.

    You can show the exam details for that user in the detail section. Also you can create a sub report to show the exam...
  22. Replies
    1
    Views
    1,529

    Re: Multiple sub-report on the main report

    Your main reports detail section runs 14 times. If you want to show the data from the sub report then don't put in the detail section or remove the extra tables from the main report so it runs for...
  23. Re: How to add 'detail' section of crystal report programatically?

    check this out

    http://www.crystalreportsbook.com/Crystal_Reports_Net_Book_Index.asp

    or google for Crystal Report Automation.
  24. Replies
    3
    Views
    2,509

    Re: Export Report from Crystal to Word

    export to PDF instead of Word and then print.
  25. Replies
    2
    Views
    1,125

    Re: Crystal Reports - Formula

    you can do this using the shared variable.
    initially set its value to false and use in the formula.
    then set it to true.
    After that the section will be suppressed.
Results 1 to 25 of 286
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured