Default Avatar

gordk

gordk

About

Username
gordk
Location
St.Catherines On. Canada.
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • it exist already for the past month.
    in Newsgroup Comment by gordk November 2006
  • help us help you, give more info required frversion and level? ie 3.24 pro the code where you load the report and call showmethod, and what comes after, are you in a custom preview? is report stored in dfm? is this a report converted from a pr…
  • iam not a studio person but from the message you are getting try thisform.fr.IfrxResources.LoadLanguageResourcesFromFile('REPORTS\Spanish.frc')
  • I don't think we support multiple recipients or cc's at this time.
  • large size may occur when 1 embedding fonts 2 optimized print - high res graphics 3 report contains large rtf objects they export into pdf as bmps
  • see the main demo chart2 report. see the series' properties and settings and the chart bottom axis settings for the first chart in my experience charts containg more than one series, for comparison data usually use all the same date values ie mon…
  • here is a sample frxreport1.LoadFromFile('colatetest.fr3'); frxreport1.PrepareReport; you may set props of export components here. if the show dialogs setting of the mail export is true the call below brings up the export dialog where you can fi…
  • don't export to pdf first make sure underlying delphi form has both export objects on it. set any defaults you want for pdf. use email export and select default format to use.
  • Hi Peter forget how things were done in qr compile the demo aps and look at them fom the ide as well as run time read the programmers manual and the users manual and try the examples in the user manual.
  • you must set the allowsplit property of the band containing the stretched memos.
  • set text objects stretch and stretchmode props and the bands stretc and allow split props.
  • set text objects stretch and stretchmode props and the bands stretc and allow split props.
  • actually there is documentation. usermanual, programmers manual, developers manual. there just is not a specific chapter on conversion. "if [completed] = 'yes' then" the reason it no longer works, [] not required in script if varariables are cr…
  • not sure what you are asking here. see the main demo basic reports subreport report and sidebyside subreport report for ideas on how to work with subreports. another way is to place subreport in side a detail band not connected to any dataset, bu…
    in Sub-Report Comment by gordk October 2006
  • procedure TMainForm.Button1Click(Sender: TObject); begin if OpenDialog1.Execute then begin frxreport1.loadfromfile(OpenDialog1.FileName); frxreport1.ShowReport; end; end; works fine for me also d7 d10.
  • not neccessarily so, it means you have to take care in the initial design of each child band or write code to compensate for some conditions. if you are using basic edition you cannot write internal code, it is only available in standaard and above…
  • Objects??? coordinates and sizes are set in pixels. Since the ?«Left,?» ?«Top,?» ?«Width,?» and ?«Height?» properties of all objects have the ?«Extended?» type, you can point out non-integer values. The following constants are defined for converting…
  • use onbeforeprint event.
  • you cannot inherit forms containg the report component..
  • use an overlay band to contain the holemarker objects. hint set designer to unlimited height after finishing your design add an overlay band make its height large enough to postion the objects vertically where you want them to appear. an overlay…
  • You are working under a common misconception a band is a place holder of objects on a design page, the object's, within the band, cury prop is relative to the bands cury prop by the amount of it's top from the band top at designtime. The bands p…
  • since you based it on the demo you probably did something like procedure Memo4OnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then Memo4.Text := 'Sum: ' + VarToStr(Get()); end; you are resetting the text of the memo to contain …
  • it sounds like someone has installed a demoversion goto your user page login using the password and user info you were given you will probably have to re download and reinstall. key is on the page.
  • normally one sets the condition property of the group header. this expression can be based on frfunctions and variable values However, since your time span is covering 2 partial periods, it may not be acheivable and should probably be resolved at …
  • see page 19 programmers manual Exporting a report It can be performed from a preview window. The operation can also be executed manually, via the ???TfrxReport.Export??? method. In the parameter of this method you should specify the export fi…
  • here is a short sample procedure TForm1.Button1Click(Sender: TObject); var //declare var of types needed ob:tobject; bnd:Tfrxpageheader; i,b1,c1:integer; obname:string; pg:tfrxReportpage; begin frxreport1.LoadFromFile(wpath+'2.fr3'); for …
  • Possibly in the next generation ie fr4( no time frame as yet).
  • A report design consists of a heirachal structure of objects. page, objects on page "bands or other objects", objects within objects on the page "memoviews in bands". Meaurements like "top", are relative to the object's parent object and not necess…
  • Yes for single item set the properties of the frxdbdataset before calling report. range properties, open close dataset properties, set them back to normal after running report. or to use the dialog of the report change code to connect to the…
  • in obp event of header if detailbandname.dataset.recordcount > value then engine.newpage; or check freespace if engine.freespace < value then engine.newpage. read the usermanual chapter on using the engine object.