Default Avatar

gordk

gordk

About

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

Comments

  • I assume tou are trying to center the barcode on a label. barcode centering on a label since the barcode object does not have its width untill it gets its data and it doesn't build around it's center point. we have to modify it on the fly. This…
  • hi Dave and Teo while their policy has been free within a version ie 2.. to 2.51(minor upgrade) IMHO I would expect a charge will apply to ver 3.0 (major upgrade). regards
  • hi page 17 and page 15 regards
  • in the on get value add if blocks to test for the parameter name. regards
  • works fine for me add a query add fields with field editor change all refrences to table in implementation section to query1. and don't forget to change the memos in the report. from table1."fieldname" to query1.fieldname. regards
  • they are in this forum look back a few pages regards
  • Hi Again same test in obp event of colum header works ok for me d7 fr2.51 with updates posted by samuray regards
  • IMHO you can't But you might try this export to csv,rename to .txt then import into xl. importing a txt file in xl gives you better choices than importing csv. regards
  • here is a sample procedure TForm1.Button1Click(Sender: TObject); begin frprinttable1.BuildReport; frPrintTable1.Report.PrepareReport; frPrintTable1.Report.ExportTo(frTextExport1,'C:\test.txt'); end; regards
  • Hi call dialog first and pass name to filenameparam. regards
  • here is a sample of modifying a barcode. procedure TForm1.Button5Click(Sender: TObject); var B:tfrview; bcv: tfrBarCodeView; begin frreport4.Clear; frreport4.LoadFromFile(wpath+'bctest.frf'); b:= frReport4.FindObject('Bar1'); b.Prop:= '[Tab…
  • godfrey no there isn't the movement is controled through the onuser function in delphi code.... begin if not table1.Eof then table1.Next; // move next if not at eof val:= true; // return vakue to var moved in report end else val:= false; en…
  • hi 1 form, 1report component, 1 opendialog set opendialog filter to .frp set initial dir. button code if opendialog1.execute then begin frreport1.loadpreparedreport(opendialog1.filename); frreport1.showpreparedreport; end; regards
  • hi godfrey get flrxlabel2c.zip from the group i changed quite a few things regards
  • they were done in d7 fr2.51 regards
  • Godfrey look at the band column report it already has the barcode on it i just didn't put it on the page column report.
  • Hi Godfrey I cannot find the code which makes the memos invisible when printing only one record. Please help where should I put Bar1.Visible := False. using the flexlabel2bdemo it goes in the onbeforeprint event of the band begin if srec = Tr…
  • hi first Grouping works with the single result set of a query across joined tables to give the appearance of a master detail subdetail report. it is dependant on the order clause of the query. So your report will have a number of group header …
  • Hi look at the fr\demos\reports demo project the first rtf report. or go to the files section of Fastreport group on yahoo and download flexlabel2b.zip regards
  • hi before calling printprepared call prepare ie if example then frReport1.ShowReport else begin frreport1.preparereport; frReport1.PrintPreparedReportDlg; end; regards
  • Hi Hannes I haven't heard of one but fr is really fast and easy when designing reports. IMHO it's easier to and quicker to redesign in fr than attempting conversions from other report generators. regards
  • try compiling the fr\source\ado\components, see if you can access the table using them, if they will compile, you might have problems after having a2000 and going back to old version of access. strange gord
  • hi read faq.txt or see notes in unit1.pas of fr\demos\reports regards
  • I expect that the problem is trying to access a ms acess table using bde dbengine components you would need the ado engine components. regards
  • hi use one form to handle all your report components,add in objects etc refrence that form from any other form you can also assign and unassign eventhandlers of the designer from code. see the demos\reports demo project for an example regards
  • Hi can confirm this bug see my answer to your post on fastreport yahoo group regards
  • AzzaAzza69 wrote: In my app, i set a variable to show or hide costs like so: frReport1.Dictionary.Variables.Variable:=bShowCosts; in my (2-pass) report I have tried all the following and none of them work: 1. in OnBeforePrint of MasterData …
  • Hi Manel look at how your 2 queries are connected or run one query on joined tables with an orderby clause to get all the data into one result set then apply grouping as necessary. regards
  • repeat header set to true only repeats the detail header when a new set of details is started. read the chapter on where and when bands print. regards
  • hi master header needs corresponding masterdata. regards