Default Avatar

gordk

gordk

About

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

Comments

  • look at zoom settings and widebar ratio settings also check that the data supplied falls within the number of characters allowed in the codes specs.
  • see the main demo, under dialogs and script see the totals in group header report. the principale is the same regardless of where you put the output report must be 2 pass, info is gathered on first pass and is substittuted on final pass.
  • try with the filecache property turned on
  • Hi Nathan alot will depend upon the approach you have taken in yor app ie if you load files by specific filenames or from opendialogs. if you use open dialogs you can control the open and save directory props of the designer and if you give the c…
  • i'll try to answer your posts. no need to change delimiters. a tfrxmemoview has a memo property, it is a multilined text object, it may contain static text, datafields, variables, expressions or a combination of all. in any case anything passed i…
  • See the load save to stream demo Den posted in the binaries news group
  • you should really be posting in the studio forum. im a delphi pascal person and i am not sure of all available in studio edition. generally be careful where you try to retrieve aggregate values they aren't available until after something has been…
  • from your reply i assume you are using studio version and vbscript as the language is this correct ? or are you using delphi ide and basic script language in the code page? in what event are you writing this code?
  • Please give more info version of fr, where you are trying to write code in report script or delphi. Since you are a newbie I suggest that you read the user manual and try the examples, the programmers manual, as well as compile and run the main dem…
  • There is probably a difference in the printer driver under W98, in may not be sending the correct initial settings to fr.
  • read the user manual, look at the main demo, do as Gabriel said do not assign a dataset that is connected to a band, to the tfrxreport component itself, that connection is only used when you have a report which has multiple design pages.
  • Hi Gabriel ill post a demo report that replaces 4.frf in the main demo., to the binaries newsgroup "modified masterdetailsubdetail/ you should be able to build on this with the addition of some variables to track the count of subdetail records.
  • to display running total in 3rd memo declare your own variable of correct type at start of on reprt code page mytot :extended; initialize to 0, either in begin end block at bottom of page or in obp event of a header band. in obp event of data …
  • also read the user manual chapter on using the engine object to control curx or cury positions of an object.
  • Hi Gabriel english is great What you probably need to do in the oap or oach event of pageheader retreive the record count of the dataset varname := bandname.dataset.recordcount also the freespace available engine.freespace freespace /databand…
  • add an overlay band with a picture object or create a picture file and add it to the design page backpicture.
    in watermark Comment by gordk August 2006
  • assuming the values are numeric make sure allow expressions is turned on for the memo and use [Var25t]+[Var26t] set display format of memo as desired.
  • first frxReport1.Variables:=1 creates a variable in the catagorized variable list if it is not named already therefore to retreive it's value you must use the get method in report code. ie in obp event of pageheaderband var i: integer; begin …
  • see the chapter in the user manual on using the engine object. modify the bands cury prop.
  • hi all Tuna is correct you can also alter the display format formatstring, without using the function. ie set display format to number select the last item it will display %2.2m delete this value and enter your format string without the ''s ie:…
  • The point of using the dialog was to keep it all within the report, you can do it where ever you want. I would use 2 queries a select sum query on the range below the given date to supply the begining value to the transfer varaiable. and a sel…
  • Sory I have no idea of "Toad" or what they have supplied you with. I suspect you should be asking these questions of "Toad".
  • much simpler method would be to parameterize the query add a frxdialogpage with a dateedit control in the param editor of the query set the value prop to that of the dateedit.date. now you will retreive only the data required and you won't need t…
  • you must pay attention to where and how you do it. since the value property is the result of the expression, variable or datafield. ie after memo9 has retreived it's data put the value into memo10s text. procedure Memo9OnAfterData(Sender: TfrxCo…
  • you are adding to script so unseen If a variable is to be added to the specified category, use the ???AddVariable??? method: frxReport1.Variables.AddVariable('My Category 1', 'My Variable 2', 10);
  • the firstdata level should be a masterband.
  • typically frxreport1.Printoptions.printer := integer; which is the indexvalue of printer in printerslist
  • what version? where are you writing this code? top of code page var s1:string; ss:string; //makes variables global to report objects. //if code below is written in the empty begin end block at bottom of code page // variables will be initial…
  • IIRC there was a note in the faq.txt file of 2.33 about how to convert from freereport to 2.33. that may help you, but don't expect a quick today solution. as 2.33 was/is very limited.
  • Need more info. what type of printer dmp or other.