gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Here is a sample of iterating through objects of a band in obp of band var i: Integer; c: TObject; for i := 0 to Sender.Objects.Count - 1 do begin c := Sender.Objects if c is TfrxMemoView then TfrxMemoView©.Visible := False else if c is…
-
Download the trial version and try it out.
-
yes use an rtf memo instead of a plain text memo. you can create rtf in design mode or load from file or from a steam insert data variables where required.
-
Yes it can and there is a number of ways to accomplish what you want.
-
use the Alt +keycode for the euro not all fonts support it so check the windoes character map for a particular font to get the correct code and see if it is available.
-
of course it is taking time you are creating 7700 objects. try this approach procedure TForm1.Button1Click(Sender: TObject); var LFXPCOM:TfrxPage; LFXMCOM:TfrxMemoView; databand:tfrxmasterdata; i,j:integer; begin frxReport4.Clear; LFXPCO…
-
There is no royalty fees for compiled applications.
-
You can find it here http://www.fast-report.com/en/products/variants.php
-
Without more info it's hard to say but here is some things to check 1 make sure paper is positioned correctly in printer. 2 make sure report design does not have memo's whose left edge is outside of the printable area of the printer. 3 when desi…
-
Tes write code in the obp event of band or memo and modify objects properties.
-
make sure that the printable property of the picture object is set to true.
-
Since attachments are not allowed in the forum we cannot see anything if you want to show something in an attachment use the newsgroup.
-
Add a second group header, run the main demo and look at the nested group report, it shows how to do it. While it uses variables for the fields, note that all the variables are connected to 1 datasource, which is connected to a single query. the ma…
-
Assuming your stored procedure returns your data in an ordered fashion ie sql with orderby clause, use group header, master, groupfooter, set the group condition of the group header to approp datafield.
-
place a blank empty memo on the footer sized to the footer set its conditional highlight prop, see the main demo simple list report the background memo uses line# mod 2 in your case you will probably have to add a variable and increment it each t…
-
In the onbeforeprint event of the band write code to test the value of the field then modify the properties of the object(s) you want to change, if you just want the bgcolor of the band to change add a blank memo to the band and size it to the size…
-
Hi You will probably get faster answers if you post fr3 questions in the fr3 forum.
-
Hi i am seeing multiple enties in what you supplied for example i install to C:\Program Files\Borland\Delphi7\Fr3 using a custom install so that i can eliminate any db engines i dont want. there should be only one reference listed in delphi's…
-
for fr3 read the tchart.txt file and follow its directions for 2.53 a define must be written in the fr.inc file dpks should be modified also. or do a search in the vcl forum topic has been covered many times.
-
language in this forum is english
-
the initial value of a dateedit is empty, it just shows 2 separators. typical query sql statement SELECT DISTINCT OrderNo, ShipDate, Subtot, GstTotal, PstTotal, InvTotal, Posted FROM "orders.DB" WHERE (ShipDate >=:from) AND (ShipDate <=:…
-
so use 2 date edits parameterize your query and point the params to dateedit.text then all your user has to do is pick the date, you can initialize the date value in the onactivate event of the dialog if you want to supply a default date.
-
read the programmers manual starting at page 23.
-
why not use the dateedit control
-
try using the alt+keycode in the string check windows charmap to get correct keycode.
-
Hi Pete you could use a checkbox object and set its checked prop to true or false or use a memo and the wingding font, use an if expression to decide if the memo shows check or '', this way you can control sizing and frame size thickness
-
no you can't, once a report is sent to the printer the spooler is what controls the num of copies based on info it receives. However, if you use a custom preview you can hook the printbtn event modify a delphi variable and load, modify,prepare and…
-
Pay close attention to what Terry said open in 2.53 or 2.54 save as .fr3 then you open saved report in fr3. if your reports were designed in versions earlier than 2.47 it is actually quicker to redesign the report.
-
saving loading from blob stream or field 1 table to store report must have ist field must be repid integer 2nd field blob any other fields come after these. you must hook into the designer's onsave and onload events and write your own custom…
-
if you have called preparereport then use showpreparedreport.