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

    Tight Horizontal format editor setting

    I don't know if this will help you, but here is some code to tell you how big a field is. formula: checkSize WhileReadingRecords; shared numberVar maxLen; local numberVar currLen; local numberVar prevLen; currLen := Length(ToText({myField})); If (OnFirstRecord) Then prevLen := currLen...
  2. EvilSock

    Tight Horizontal format editor setting

    I have not worked with version 9 yet, and version 8.5 does not have a "tight" fiction. However, it does have a check box in the general properties that says "can grow". This has been very usefull in dynamically allocating space for data. right click field, General Tab...
  3. EvilSock

    hyperlink, mailto

    While upgrading to version 9 will obviously correct my problem, can you think of a work around using native Crystal reports functions to do this task? The issue at hand is that the Crystal Reports Engine is tied in with our PeopleSoft Financials System. Our company has licenses for Crystal...
  4. EvilSock

    virtual pages? how to apply headers

    I'm going to take a shot in the dark and assume you are referring to drill down pages as virtual pages?? If this is the case, then there is a solution. 1) split your details section into two sections. 2) move all of your detail fields into section B 3) move all of your headers/titles into...
  5. EvilSock

    Running Totals

    Yes it is possible, but you can't do it with the stock summary functions. You will have to create your own functions. //place this function in your group header (suppressed) function: init_group_count whileprintingrecords; shared numbervar g_count := 0; //place this function in your group...
  6. EvilSock

    hyperlink, mailto

    Hello All, My goal is to wite a report that groups orders taken by various people. Each person needs to get a summary of their activites from the administrator. The hyperlink/mailto function is perfect for this. At the footer of each group I have written a formula that pulls the employee's...

Part and Inventory Search

Back
Top