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

    Make report Landscape

    Ok, problem solved: i just had to right click the report and then designer --> printer setup, in that screen i had to click landscape! that's it... GRTZ
  2. leetprog

    Make report Landscape

    Ok so far i have this: report.PrintOptions.PaperOrientation = CrystalDecisions.[Shared].PaperOrientation.Landscape or report.PrintOptions.PaperOrientation = CrystalDecisions.[Shared].PaperOrientation.DefaultPaperOrientation.Landscape but my crystal report viewer still shows it in portrait...
  3. leetprog

    Make report Landscape

    Hello, I have a very simple question, but i don't know the answer :s How do you make your report in CR in landscape state? I've been searching the internet for a couple of weeks, with still no result... TIA
  4. leetprog

    Selecting records

    Hi! Yes, I tried that, and the path is correct. I know there is something wrong with the ".RecordSelectionFormula".
  5. leetprog

    Selecting records

    Hello, I'm having trouble selecting records from VB code. My code so far is this: Dim rap As ReportDocument = New ReportDocument rap.RecordSelectionFormula = "year({@Order}) = 2004 and month({@Order}) = 3" rap.Load(Replace(Application.StartupPath, "\bin", "") & "\reports.rpt")...
  6. leetprog

    Countif or Sumif in Crystal reports?

    Hi, thx for replying it still doesn't work, with this formula i get the totaal number of cards. I need to how many card there are with number 4 or number 2. GRTZ
  7. leetprog

    Countif or Sumif in Crystal reports?

    Hello, Is there a function that counts a certain field based on a condition? f.e. I need to count how many times a card has been used: How many cards have been used where the card = 4. In excell there is a function called countif or sumif. How can I do this in Crystal reports? TIA
  8. leetprog

    Reports in win98

    Hi, i'm using CR9. I got the solution. I added a setup project to my existing one and I added 4 merge modules, found in the "C:\Program Files\Common Files\Merge Modules" folder. Then I had to fill in the product license key and now it works! I didn't had to install Crystal reports on the other...
  9. leetprog

    Reports in win98

    the error my application returns is: "Cannot find Keycode2.dll, or invalid keycode"
  10. leetprog

    Reports in win98

    Hello, I'm trying to run my reports on a computer with windows98. I've developped an application that shows all kinds of reports, using a "report viewer" control. I've allready installed the dotNet framework 1.1 on the win98 computer, but now my application needs to run besides the windows app...
  11. leetprog

    problem with chart

    Hello, I'm having trouble creating a chart in CR9. The chart has to display the average count of items that were sold each day. In the chart I have grouped each day and for each day I have a total count of the number of orders. But when i try to take an average of that total count, it won't...
  12. leetprog

    Populating List Item

    Hello, i'm also searching how to fill a list item, and i've found this code: only in my program this doesn't work :s First: Create a Program unit called "build_call_type_list": PROCEDURE build_call_type_list IS group_id RecordGroup := Find_Group('RGDNUMBER'); list_id Item...

Part and Inventory Search

Back
Top