
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
you already have a text search in the preview window ju8st click on the eyeglass button
-
try the latest version 5.1 works ok for me
-
have you added frxDCtrl to your forms uses clause
-
have you writen code for the userdataset events onfirst, onnext and oneof
-
the main demo is found in the programfiles/fastreports/fastreport 4/demos/main what version are you using
-
fr does not sort data your query must have an orderby clause or your table must be sorted the first field should be clientname second field product code the condition for the first group header is client name the condition for second group heade…
-
try using the onaftercalc height event procedure ReportSummary1OnAfterCalcHeight(Sender: TfrxComponent); begin if Engine.FreeSpace < ReportSummary1.Height then Engine.NewPage; Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Hei…
-
2 group headers requires 2 group footers you must place the sumfunction in the correct footer gh1 gh2 mdband gf2 sum for product gf1 sum for client
-
paramaterize the query you can point the param to a variable if you need to convert to a set type or directly to a textbox value also take a look at the main demo dialogs and script- coosing records to print
-
try checklistbox.additem
-
start by using the onactivate event of the dialogform to do your poulating of objects and disable the ok btn you may also want to add a cancel btn make sure the creation orfer of the objects follows the correct path. look at using the onenter one…
-
Add a header and a footer band to your report, they can be 0 height place the code in the obp event of the footer not the page footer. BTW you can use memoviw frames instead of lines for vertical lines
-
indesigner menu > pagesettings
-
is the vertical master allowsplit property set to true?
-
in which event did you place the code
-
If that doesnot work you can open the fr3 file in wordpad and remove the data field.
-
typically vertical lines can be created in an overlay band they will appear on every output page created. tip overlay is a bit of a misnomer it is more like an underlay create your report first make sure designer is set to use large height in des…
-
use a masterdata band do not assign it any dataset, set its rowcount property to 1 set stretch and allow split properties to true set the memoview stretch mode to suit.
-
while engine.freespace > childbandname.height do begin engine.showband(childbandname);
-
assuming you are using at least the standard version of fr. create a duplicate of your master band in an unattached child band, using empty memoviews write code in the footer band obp event to check the freespace available and call the engine.show…
-
create and use your own custom preview form
-
procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin Engine.CurY := Engine.PageHeight -reportsummary1.height -pagefooter1.Height - 1; end; end; OR IF SMMARY BAND IS…
-
turn on the memoviews frames
-
what happens when you set allow split property of the band, might be simpler
-
you must be doing something wrong, post a copy of your fr3 file here along with a copy of the output fp3 file
-
do not connect the master band to a dataset set its number of recods to 2 write code to control movement of the dataset
-
tru adding extra brackets SUM((StrToFloat()))
-
[+]
-
from delphi after loading the report and before calling show report use the findobject method to get the band and modify its properties.
-
try working in the oad event sample of stripping white space stripwhitespace from rich edit procedure Rich1OnAfterData(Sender: TfrxComponent); var i: Integer; s: String; begin i := Rich1.RichEdit.Lines.Count - 1; while i >= 0 do begin …