Fernando Medeiros
Fernando Medeiros
About
- Username
- Fernando Medeiros
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
gordk wrote: » When building reports from delphi code you can create events for the internal report script and connect them to objects. here is a sample. its running [img]style_emoticons/<#EMO_DIR#>/cool.gif" style="vertical-ali…
-
gpi wrote: » gpi wrote: » masterdata.onbeforeprint := 'masterdata1onbeforeprint'; // its correct ??? Yes, but masterdata1onbeforeprint event should be placed in script code, not in Delphi code thank you gpi
-
thanks gordk... Very pleased with your help.
-
Thanks GPI in the tfsscript ? any example ?
-
my code: unit classerelatorio; interface uses .... type trelatorio = class(tobject) procedure add_detail; ... ... ... private procedure masterdata1onbeforeprint(sender: tfrxcomponent); public end; ... var relatorio : …
-
gpi wrote: » I have the same answer gpi wrote: » If you want to use OnBeforePrint event in Delphi's code - use TfrxReport.OnBeforePrint event You can assign TfrxMasterData.OnBeforePrint with script event only thanks gpi, but dont w…
-
i have the same question... code: masterdata := tfrxmasterdata.create(frxreportpage); ............ ............... masterdata.OnBeforePrint := my_before_print_event(nil); but... do not work [img]style_emoticons/<#EMO_DIR#>/sa…
-
gordk wrote: » set page columns for vertical columns. 1 3 2 4 set band columns for horizontal. 1 2 3 4 5 6 Yes, very good, but.... if i need report with 3 columns and other band with one column in the same page also: http://yfrog.c…
-
technisoft wrote: » as well as have a property 'Columns'. Use the one which gives you the desired results. The question = data orientation