gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
here is an example from a memo in a page footer. [IIF( > 1,'continued from Page: ' +VarToStr( -1),'Page: '+Vartostr())]
-
to many [] braces one pair only.
-
olsonware wrote: » To reproduce: Create new report From Report Menu, Choose Variables Add Group - call it CompanyInfo Add Variable - Call it Company click on the check Add Page Header From the Data Tree Variables Tab, drag Company to th…
-
this feature is available in fr4
-
how to iterate through the objects of a band in band's obp event example 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// or whate…
-
work from delphi. with your resource string array. write a user function or an additional function in fr to passout the 2 integer values and return the string. create variables in fr like lid,str1, str2 etc to use in memos you can either give the…
-
Tariq works fine for me fr3 &4 make sure your series is active your chart id is correct and your index is correct, and your series is set to fixed data. write your code in obp event of chartview
-
if you only want encryption use your own delphi encryption routine to encrypt and decrypt the fie when saving loading
-
i am refering to the app you compiled with fr. the firewall is probably blocking it from using the mail server.
-
check your firewall make sure your application has permission to send emails.
-
no it has a richedit property that does. TfrxRichView( Sender ).richedit.lines.assign( RzRichEdit.Lines );
-
set the dialog prop for the export component set the preview options props of the tfrxreportcomponent, before calling showreport.
-
what do you mean by multi page, multi design pages or multi output. typical code procedure TForm1.Button4Click(Sender: TObject); begin frxReport2.LoadFromFile('Endlos.fr3'); frxReport2.PrepareReport; frxreport2.PrintOptions.ShowDialog := fal…
-
not sure what you are trying to accomplish the only way to limit the size is to control the num of records displayed. by either code or limiting range of the frxdbdatsets.
-
if you don't see the export components tab on your delhi pallette no.
-
reopen the report in design mode you will need the pasword, then remove pasword and and resave the report.
-
use the obp event of the tfrxreport component. if sender.name = 'Richedit1' then begin write code to assign the lines of your delphi richeditcontrol to the lines of the tfrxrichview. end
-
sample [IIF( ='',,)] if you want the evaluation expression to check for null then the report engine option convert nulls must be set to false otherwise check for value.
-
the object on the design page does not shrink or expand. it is only giving you an indication there is something there. this will also cover your other question. look at a text objects properties, plain or rtf,and set them as needed. ie stretch a…
-
Terminal is not a scaleable truetype font. try turning off wsiwig prop of memo. or use more than 1 memo with variables and before running report parse your textfile and pass the values into a variable. or store your file as an rtf file and use an…
-
where are you writing the code, in the obp event of the memo or the data band containing the memo?
-
hi steve it is choking on the ' don't forget delphi strips string delimiters so you must add extras when passing strings into categorized variables.
-
ongetvalue only fires when a variable from the catagorized list of variables that has no value is encountered. not for variables declared on the reports code page.
-
The iif function returns one variant or other variant. if the the display format of the memo is set to something other you may get a bad type cast error. so you must add required functions around true value, false value members. another way is to …
-
whatch your string delimiters [IIF(='',,'Postfach '+)]
-
you probably missed the report components name. ie frxreport1. unless you renamed it to frxreport or you have set a property of the memo wrong visible, printable etc
-
no the barcode expands and shrinks according to contents.
-
see reply to same message in fr4 forum. please don't cross post.
-
you only add preview component when using custom previews. after loading report call show report in the preview window click on the editpage button
-
read the usermanual run the main demo under basic reports look at the subreport report.