Default Avatar

gordk

gordk

About

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

Comments

  • Yes When fr encounters a variable it checks to see what it must do see notes in docs on programming. if true then child1.visible := false else child1,visible := true; or in obp event of child visible := [expression that equates to true or fals…
  • In designer add the overlay carefully after doing all other design work and make sure its boudaries do do not line up with any other objects, add the picture view to it and send to back. or at run time you could try this procedure TForm1.Button1Cl…
    in Overlay again Comment by gordk June 2004
  • see the treeview demo in the public.binaries news group regards
  • turn mdb visible property to false use extended syntax of sum funtion in memos in footers and summary band [sum([tablename."Fieldname"],bandname,1)] bandname is bandname of mdband as shown in frs object inspector. the ,1 param allows summing non…
  • try wrapping it with apostrophes ''''+dateTostr(startdate.date)+''''; regards
  • Hi Shane if you are working with chart object using memos try setting the display format for the memo to number custom if you are having a problem with the format mask it probably needs extra apostrophes. Also if what you are trying to set is a …
  • modify your code a little from this var PV: TfrPictureView; begin guzial_ini := TINIFile.Create('../plik2.ini'); frReport4.LoadFromFile('test4.frf'); PV := TfrPictureView.Create; PV :=(frReport1.FindObject('Picture1') as TfrPictureView); PV.…
  • you can retrieve and test value in obp of master, test the value of var and set visible property of child band. regards
  • see the label demo posted in the Fast-reports.public.binaries newsgroup, regards
  • Hi Shane see my reply to your post in the yahoo group and see the chartdemo in the files section or the same demo posted on fastreports.public.binaries news group BTW any one using delhi6 or later turn on your auto codecompletion and you'llfind al…
  • It is actually easier to have a chart form in delphi and assign that chart to the chart object at run time The chart object is limited and depends upon 2 memo object's(by their name) contents to retreive values for series and legend. regards
  • when using fruser datasets you are responsible for record movements in the object to which it is connected, and must write code for the onfirst on next onprior oncheckeof events, so a ongetvalue event is not too usefull better to write onuserfuncti…
  • you can find a tab order wizard for the dialogs in the old powerpack should still work regards
    in Tab Order Comment by gordk June 2004
  • sample procedure TForm1.Button5Click(Sender: TObject); var B:tfrview; bcv: tfrBarCodeView; begin frreport4.Clear; frreport4.LoadFromFile(wpath+'bctest.frf'); b:= frReport4.FindObject('Bar1'); b.Prop:= '[Table1."Species No"]'; // above wa…
  • Hi the overlay band is very tricky to work with. do all design work first and add it last along with its object. there is a way to addit on the fly i'll post the code later regards
    in overlay Comment by gordk June 2004
  • Hi you cannot place stretched memos one above the other in a band! But you can attach a child band abd set memos to stretched in that band. regards
  • Hi Rene try adding a small master footer to the subreport or an appropriate footer or child to the band which contains subrep object. BTW Pierre and I are closing the yahoo group on or after June 30 2004 better to keep things between fr forums an…
  • Hi if you are trying to give an choice of which report to run try using a radio group then in preview button use a case statement to get the radio groups index and then when loading and runnig reports call report components clear method before …
  • connect frdbdatset datasetprop to query should be able to use default settings of frdbdatset. if query is accross multiple tables and you want it to appear as master detail make sure you have an orderby clause to sort the fields in the order of th…
  • need more info about report, database engine, how query is connected to mdband etc. it seems like you have accessed the query directly and not through a frdbdatasource. regards
  • hi i would modify project source code to autocreate dm first rather than on the fly from the mainform and add the ref to the dm in the uses clause of the implementation section of the mainform. regards
  • in the button click event after loading report and before calling showreport or prepare report methods frreport1.dictionary.variables.add('varname'); IMHO use your onmanualbuild event for controlling bands appearance only read chapters on variab…
  • Read the XXXX docs item 1.13 faq txt file regards
  • Hi in Fr_view.pas in formkeydown procedure procedure TfrPreviewForm.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin ...... code find this line approx 1049 else if (Chr(Key) = 'P') and PrintBtn.Enabled then PrintBtnCl…
  • yes it is read the answer to question 2.24 in the faq.txt file regards
  • set the breaked property of the band that contains the memo also stretched property of both regards
  • You have to modify the actions of the designers onsave event see the faq.txt file you will also have to add your own dialog to decide if you want to store as a new record or overwrite existing table for storing must have layout of idno,blobfield …
  • Hi you will need to create some arrays to hold values like page no and article name and store the record count in a variable on the summary page set the mdband datasource to virtual record count to the no of records in record count variable then i…
  • Hi select the desired memo go to the text tool bar and select right justified, with the same memo selected you can either rightclick and select desired display format or you can use the object inspector and select display format and make what ever…
  • Hi I am not a cbuilder user so i Have no idea what borland supplied with versions of c builder. But the dbdemos alias in delphi points to the borland demo data. it may be something like this C:\Program Files\Common Files\Borland Shared\Data reg…