gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
in report script code Typically write code in obp event of the band containing the memos. if = '' then begin //change object props here end; or just set the engines cury prop in the obp event of the memo you want to move if = '' then begin…
-
it may involve which character sets are available under windows os between your machine and hers.
-
when exporting try embedding the font. BTW it exports ok here wxp,D2010, fr4.9.106 with out embedding. This message means what it says " 'Cannot find or create the font 'Franklin Gothic Demi'. Some characters may not display or print correctly.…
-
don't use omb event, connect the masterdatabands dataset prop to the correct datasource. write code in the obp event of the band to check where you are (which line, system variable Line# or line which ever is approp ) and if on the 3 set the engine…
-
connect your mdband dataset. prop. don't need on manual build event. set you cury in the oap or obp event of the band. or in the band oap move the dataset to next record if you want to use masterdata not connected to a dataset set the band he…
-
i would suggest you try the latest build 4.9.106 it can be found in your dl page.
-
engine is always working in pixels.
-
Glad you found it, was just going to tell you where the link was. there is 3 updates involving Delphi. bye
-
Yes there is currently 1 that i know about.
-
probably want to use a crosstab to create a summary.
-
There is a work around if the query's sqlstring is hard coded it will work. so build the string, add it to the query. here is a sample change i made in the main demo internalquery report to illustrate. create a variable mystrvar and give it a val…
-
any function can be added to a file see the developers manual. i am not sure which product(s) you work with as your post's show up in different forums. I am not sure of what you are trying to achieve as some of code appears to be internal report c…
-
when the memo contains [frxDBInvoice."LetterText"] this expression is processed and the text of that field is substituted for the expression. thats it done on to the next object to be processed. when you retreive the text of the field in the obpe…
-
create your own variable and use it in the obp event of the mdband to gather values. set it to 0 in the oap event of group footer.
-
[frxDBInvoice."LetterText"] the key is in the underlying data type of this field and what it creates when used in a memoview. it creates one long string when it is processed.Ie it is the expression being processed try this in the obp event of the …
-
i believe it is the expression parser it cannot resolve the where clause parameter portion WHERE ACOLUMN1 IN (:PARAM1) what you may have to do is work entirely from delphi and pass the complete sql into the query object after the report is loade…
-
Peter running version 4.9.106 of FastReport VCL. win xp delphi 2010 Compiled the demo, exported the same report to pdf. runs fine for me (admin rights), watch out if you have installed to different folders you may be overwriting the pdf if you ha…
-
only 1 set of [] allowed in the expression
-
IIRC freereport does not support wprich text.
-
you may need to use an or query and three variables.
-
what version and build number are you using outlines were added a while back current version is 4.9.106
-
see my reply to your other posting.
-
Not available in basic edition. You must have at least standard edition
-
i am not running excel 2010 so i can't be sure about this but i vaguely remember when installing Delphi 2010 a choice had to be made as to which office controls were being used 2003 or a later version and have you tried exporting to open document s…
-
invalid variant operation error usually occurs when the expression parser can not resolve an expression. a typical case is a report which uses the on getvalue event (requires .exe to be running), being run from the ide by clicking on mnu-file-prev…
-
sorry you don't like the answer, but if you have memos that are auto width the data can push the memos out of place. you cannot expect to have more data(in width ) than the page width. I suggest that you need to place the data memo views under the …
-
it works fine look where you wrote your code, you put it in the begin end. block of the code page this block is the first to be processed so edate is set before the activate event anwhen you click problem.set both dates in the onactivate event.
-
if you intend to have the objects stretch turn off auto width, and turn on wordwrap you may have to set your horizontal alignment to banone.
-
you have added them to the app more than once.
-
not so try this code in the main demo basic list. band 3 is the page footer procedure Band3OnBeforePrint(Sender: TfrxComponent); begin band3.visible := ( = ); end; works fine.