gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
you cannot control the individual lines of the frame only the entire frame. you can see this in the designer if you have your tool bars turned on you should notice that when you select the shape the individual frame line choices are disabled. BTW…
-
you cannot control the individual lines of the frame only the entire frame. you can see this in the designer if you have your tool bars turned on you should notice that when you select the shape the individual frame line choices are disabled.
-
we both missed something the shape view can only have the frame style and color set and the fill color. makes sense if you broke the frame the fill would bleed out.
-
with the draw object shape view you can only control the style and color of the frame not individual frame lines leave it as solid and make the color the same as the fill.
-
the frame typ just turns them on or off experience vertical frame liness need more than 2 pixels for better appearance when printing. deepending on color of shape you may need to set a diff color for frames.
-
what version are you using ok for me 4.15.4 you may have to set the frame line widths larger and may be colour to see the diff
-
design report on first page put the table of contents on page2 in designer wwindow select the page2 tab and move it infront of the page1 tab.
-
in the designer mnu file new from the dialog select standard report wizard and choose what you want.
-
in designer mnu view options
-
after you call loadfromfile get the design page and set its duplex property
-
it works fine for me i suspect you are doing something wrong in your code prior to begin dataset.first; while not dataset.eof to // this cannot be a dataset that is used in the reort. begin frxreport1.clear; frxreport1.loadfromfile(file.f…
-
Unclear as to what you are trying to do. are you trying to limit the mdband to display only 5 records?
-
yes in the memoview's onafterdataevent. sample to strip blanklines. begin for i := TfrxMemoView(Sender).Lines.Count - 1 downto 0 do begin if TfrxMemoView(Sender).Lines.Strings = '' then TfrxMemoView(Sender).Memo.Delete(i); end; end;
-
the first error is the wrong type of brace the iif in a memo should be enclosed in [ ] braces ie [IIF(expression to evaluate,true value,false value)] i suggest you try using frs builtin expression builder to help you form your expression
-
try the onafterdata event of the memo
-
try adding more braces ie. [IIF(( < ), ( - ),"0.00")] if this does not work for you use the obp event of the databand to write code to set the vakue of the memos text.
-
If, es., I have 3 record in MasterData, as result, in preview, I have 3 Pages with one record for page this sounds like the tfrx report report component connected to a data set that causes the above to happen. rather than the masterdataband being …
-
you should do it in the obp event of the footer also while engine.freespace > Child1.height + pagefooter.height do
-
one way is to add an overlay band and draw your lines in it. the second way is to duplicate the memos of the mdband in an unattached child band. write code in the obp event of the footer to check the engine.freespace - the footer height divided by…
-
read the developers manual chapter on custom funtions.
-
check that the design of the report is using the correct printer and not sending it to an off line printer
-
this forum is english only
-
look at the main demo old style cross tab report using vertical bands.
-
probably because the embarcadero version does not have the required components for the demo which are only availabel in full version
-
you have set the memoview's width to align to the full width of the band from left to right. if you want the text to be centered in the memo set the horizontalalign property to hacenter
-
you must program all the events of the userdataset.
-
have you tried using the right axis instead of the left.
-
You can call clear frxreport1.clear; or you can use frxreport1.loadfromfile('file.fr3',true);
-
do things in the correct order first locate and load the report into the tfrxreport component then set the report options name then call design report. ImpresosDataSet.Locate('ID', id, []); (ImpresosDataSet.fieldByName('Impreso') as TBlobField…
-
felixinasa wrote: » Hello I??m saving an loading my report from a database using loadfromstram and savefromstram. How can I change report title? I??changed report.reportoptions.name but title alwys is untitled thanks Sample code of w…