gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
internally only if you are using components of one of the fr supplied dbengines or 3rd party dbengines if you are using external objects then you can create your own outside dialogforms to perform those settings.
-
your tclientdataset is located outside of the report so access it from delphi prior to calling showreport or prepare report.
-
IanT wrote: » < you can either set it from the report designer > Where please ? gk> report tree window select report in object inspector select print options set the showdialog to false < or from delphi as a tfrxreportcomponent …
-
set your masterdataband dataset property to your frxdbdataset that is connected to your tclientdataset, make sure your tclientdataset is sorted in the order you want. your report will group itself into the correct groups. Group footer : [COUNT(M…
-
turn of the report printoptions showdialog property. you can either set it from the report designer or from delphi as a tfrxreportcomponent property.
-
first off you only need to dl the version of fastreport 4 you want either stable or pro daily build from your dl page. all others are included delete any other frx files bpls dcus. run the fr version installer.exe you downloaded and follow inst…
-
the rich view does not have any text until after it has been processed.
-
it sounds like a bad install.
-
look at the printtable demo in the demos folder before calling show report get the design page and set it to the orientation you want. read the programmers manual on how to access report objects and how to set page properties.
-
did you place a designer component on the delphi form or in clude the frxdesigner unit in the uses clause?
-
to output something a masterdataband needs to be either connected to a datasource(controls no of times it repeats reccount) or set it's rowcount property to a value.
-
when you want help please answer the question that is asked i can't read your mind as to where and when you are processing this code.
-
first your report file must be loaded in the tfrxcomponent before trying to set the value. second when passing string values you must use extra string delimiters read the programmer's manual on working with variables.
-
in what event are you writing this code.
-
you should always delete in reverse order procedure mLabelOnAfterData(Sender: TfrxComponent); var i: integer; begin for i := TfrxMemoView(Sender).Lines.Count - 1 downto 0 do begin if TfrxMemoView(Sender).Lines.Strings = '' then TfrxMemoVi…
-
it can be as simple as setting the visible property of the mdband. masterdata1.visible := ( = some value)
-
assuming you have a report definition loaded or are building from code frxreport1.reportoptions.description suggest you read the programmer,s manual on how to access objects from delphi code the users manual as how to work within the report.
-
not clear as to what you are trying to do! but sugesst you look at using an iif function inside a memo [iif(booleanexpression , truevalue, falsevalue)] ie [iif( = 'HIGH', 'high','low')]
-
yes you can but you can only acess object properties //code to load report frxreport1.script.AddForm(self); // add the current delphi form report code var mpath:string; begin mpath := form1.label1.caption; end. Or you can use a vari…
-
Psofts barcode supports pdf 417 http://www.psoft.sk/products
-
if your dbengine is tdataset compliant you can connect using tfrxdbdatasets. if you want internal datasets read the developers manual and see the newengine project in the fastreport 4\extra folder
-
if you want scripting abilities with in the report then you need at least standard, but there is no source code so you cannot take advantage of daily builds, bug fixes Pro gives you source code so you can recompile lib as needed ie using different …
-
i have to try to understand what you are doing and your names of datasets are very confusing. along with the fact i need to translate names. take a deep breath, and maybe rethink what you are trying to do. look at the main demo urls and anchors …
-
probably the fact that one of the group headers is resetting the page number. also be very careful when connecting reports and grids to the same dataset after the first moves through the table the grid will have it on the last recored and it wont …
-
go to the product page click support scroll down and you will find a newsgroup list. BTW am i supposed to look at the report you saved as an .fr3 file or the one embeded in the dfm.
-
look in the binaries news group
-
with out more detail knowledge of your situation, i have now idea. can you post a small sample demo in the binaries newsgroup?
-
if you add the converter unit to your uses clause the frdesigner can open a reportbuilder definition file and you can then save it in .fr3 format. when you have finished conversions you may remove it. generally set up a reportcomponent and a design…
-
Post your questions in the correct product forum or news group ie FR4 for delphi, c .NET for dotnet Studio for studio product i do not answer personal emails unless i have requested that you send it.
-
first the file link "For the picture I have a path to a folder with pictures in it and the filename of the picture (not the whole path) in a database field called 'filename'. I tried putting this 'C:\Databases\Studs\photos\' + [filename]" you…