gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
i expect your problem may be here TfrxPictureView(Sender).FileLink := FclientLogo; What is fclientlogo, a property you are trying to read? if the logo is already in a delphi image component just assign the image to the pictureviews picture.pro…
-
Yes it can be, you may also write code to modify it in the begin end. block of the code page another method is to set the visibility of the databand in its obp event ie: masterdata1.visible := () > 0
-
the easiest is to parameterize the query in the parameter editor set the type and in the value box select the variable. then you can pass a value into the report when loading it or use the onactivate event of the report dialog or you can use valu…
-
no you must close it it will prompt you to save any changes you've made
-
IIRC inheriting one report from another requires the parentreport to be stored in a template dir as an fr3 file, you can't work with them stored in .dfm files.
-
I doubt it it has been that way since fr3. for your vertical bar assuming |memoobject| |vbarobject| memo object stretches band to suit contents set barobject stretch mode to smmaxheight it should then grow with the memo object.
-
if ClientLogo is a categorized variable you are trying to access the variable incorrectly RawViewReport.Variables.Variables := #39+FClientLogo+#39; it should be RawViewReport.Variables := also remember that when passing a string value from …
-
use 2 design pages and make the report 2 pass on the first design page use a masterband set to i record and memos for the contents. in the first pass set the first design visibility to false. as design page2 runs populate the contents memos of de…
-
from usermanual re export into html Export peculiarities: export may consist of several files. Each graphic image is supported and saved in their own separate file, RichText objects are transferred as simple text.
-
you don't need to set width if you are trying to control where band output is on the finished page use the engine object to control cury and curx positioning. read the usermanual chapter on using the engine object.
-
your first problem is not enough height for the barcode. 2nd may be the event you are trying to work in look at this sample code procedure TForm1.Button1Click(Sender: TObject); var rpt_report:tfrxreport; rpt_datapage:tfrxdatapage; rpt_page: …
-
variable values can be retreived using the ongetvalue event or passing them in in any of the tfrxreport components events. I sugest you read the programmer's and user's manual on working with variables. for other procedures and functions read the …
-
the object must be created in the context of its parent. look at the sanple code from the manual var DataPage: TfrxDataPage; Page: TfrxReportPage; Band: TfrxBand; DataBand: TfrxMasterData; Memo: TfrxMemoView; { clear a report…
-
without more detailed info cannot help you, the error message is usually encountered when a variable or datafield returns and unexpected value type for the operation that is trying to work with it expects.
-
object should be created in the page. read the programmers manual about creating reports from code
-
are you sure it is an oleobject field, and not a blobfield?
-
did you include a tfrxchartview component in your app or the underlying delphi form. You may have to reinstall your fr version and use the recompiler to select the correct teechart path and version first.
-
you can't a page footer is just that.
-
go to the product page click on support on the support page click on Online support form
-
3 things first have no idea what you are trying to show. 2 have you tried the latest build 4.7.88 to see if your problem has been resolved. 3. if it does not suggest you take out a support ticket.
-
in fact why even create the array you can add the strings to the memoviews memo directly in the databand and clear the memo in the oap event of itself or the footerband
-
create the array in the empty begin end. block of the code page so the array is global to the events
-
if you are using fr3 or 4 post in correct forum. look at using subreport objects in detailbands set to a rowcount of 1 and not connectted to any dataset
-
what is frxexport? previewpages can only be added from one Tfrxreport component to another Tfrxreport Also the report component to which the pages are being added must already contain one prepared preview page before any preview pages can be added…
-
the problem is that you are trying to shift design heights. what you really want to do is alter the engines output to the finished page by setting the engines cury value see the usersmanual chapter on script "using the engine object". Note that …
-
set the second designpage visibility from the onclick event of the dialogs ok button. page2.visible := NOT checkbox1.checked; you also want to set your query in this event also.
-
works fine for me. child1 memo1 child1 child prop set to child2 child2 memo2 child2 child prop set to child3 printchildifinvisible set true child3 mem03 child3 child prop set to child4 note you control band visibility not the memo or use…
-
set each successive memo in its own child band chain childbands one to the other and set printifinvisible prop to true
-
create the memo in the group header and set its text. control its visibility using two variables (done notdone) which is set in the obp of the groupheaderband and reset in the oap event of the group footer band. or if your databand is a set size a…
-
use a memoview object in an overlay band.