Default Avatar

gordk

gordk

About

Username
gordk
Location
St.Catherines On. Canada.
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • in designer go to mnu>file>pagesettings otheroptions tab and set use large height in design mode option.
  • In the memo i wrote [test] that would be how to display a variable named test you require a parameter for your function. [test(param)]
  • Need a better explanation of what you are trying to do ?
  • fast report does not sort it only outputs the data passed to it grouping requires you to sort you queries using an order by clause to order the fields, in the order of the group(s) conditions. tables should be presorted.
  • build the aggregate expression correctly by using the aggregate expression builder with the correct flag value and hide the details. [Sum(,bandname,flag)]
  • Anu de Deus wrote: » Considering any new statemente must start in an odd page number (1, 5, 7...), create a OnBeforePrintEvent for the top band of your page, and check if it's printing in a even number page. If it's not, then you set the StartNe…
  • do not connect the band to a dataset set its rowcount property and control dataset positioning from script code. var ds: TfrxDataSet; ds := Report.GetDataset('frxDBDataSet1'); use the username of the dataset you can now set the ds to first, l…
  • you cannot pass richtext in a variable. variables were not designed for that. you can assign the lines of a delphi richtext component to fr's richtext object.
  • Read the user manual on crosstabs
  • Marius assuming you used default folders for installation. run fr's uninstaller. delete the FastReport 4 folder dl the fr d12 version installer for d2009 make sure you unblock it. run using default installation paths. this builds the d12lib fol…
  • we really aren't here to teach you how to code in delphi or script. you don't need 2 radio buttons to make a choices you only need 1 here is a sample. assuming you knew enough to add 2 buttons and set their modal result props. use a checkbox…
  • not sure what you do not understand? you will use a tfrxpictureview object to display the logo the 2 important properties of this object in your case is visible or printable. you can control either using a value in a variable. a variable value c…
  • usually means that you did not reinstall to same dir you used earlier. so check your delphi lib path
  • the easiest method is to decide what to do before you call show report. you can set a variable hidelogo from either delphi or from a report dialog. in the report script write code in the obp event of the pictureview object. visible := not hidelog…
  • watch when passing string values from app into a categorized variable, it must have extra delimiters or the expression parser will kick in and try to evaluate and fire the ogv event if it can't. a string value in the variable must look like 'strval…
  • i'll take a look at your code tomorrow when i have some time watch where you set your parameters and make sure the the ibx datamodule is running. also make sure your parameters return valid data.
  • "It's the latest FR, only bought a week or so ago" a statement like above tells us nothing stable version or daily build and build no. if you saved in the dfm are you calling the correct report component. ie if you designed using frxreport1 y…
  • without more info can only guess, probably forgot to load the report before calling showreport. typically Frxreport1.loadfromfile('path&filename.fr3'); frxreport1.showreport; Please when you post tell us what build and level of fr you are usi…
  • unfortunately with standard version yes.
  • when working with the design page you use the find object method this way Memos := frxReport1.FindObject('Memo2) as TfrxMemoView; access any property of the memoview here.
  • personally i would use the current daily build. you may also go to support on your d/lpage and take out a support ticket. personally i have not run reports with that many pages.
  • yes that was what i meant. look under engine options of the tfrxreport component check the usefilecache property this may help, also maxmemsize. you may also want to update to the latest build 4.7.157 considering you are 2 full versions behind a…
  • check the report component's settings as well as the export and make sure printspooler releases pages immediately. it would be good to tell us what version and build# of fr you are using also.
  • repeating a message with lack of info in another forum will probably not get you any answers. go back to server forum and give them some info to work with. fr version# and build#, ide version, and opsys as a minimum.
  • there is no locate method for the tfrxdbdataset.
  • i did not say it was good or bad i said it is a place to start! once you get the idea of how its done then look at the units as you suggested.
  • it must be something at your end cannot duplicate it here
    in Properties Comment by gordk June 2009
  • strange your reply seems to sound like this just happened but the version number is from 35 builds ago. i suggest you de install clear all traces of the fastreport lib from delphi ide, then dl the latest build and reinstall
    in Properties Comment by gordk June 2009
  • did this just start happening on a prior installtion or has this occured after an upgrade?
    in Properties Comment by gordk June 2009
  • don't connect the memo to the field and remove any text in the memo that looks like [datasetname."fieldname"]