gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
hi tokkie the only thing i can think of is to check if the oki is using the latest drivers available. Can you try it on other printers? if you can't save as an .frp zip it up and emailit to me, ill try it on canon inkjets regards
-
hi don't declare just name and initialize inobp of band begin if [Line#] = 1 then begin olddate:= [DM.dSetLogBook."Date"]; Memo2.Fillcolor:=clSilver; end; //sets on firstrecord if [Line#]>1 then begin if [DM.dSetLogBook."Date"] = [old…
-
hi add a blank memo to the band (memo10) size it to the size of the band and send it to the back. in on before printevent of band add code ie if [tablename."fieldname"] = some value then memo10.fillcolor:= claqua; multiple times for each value an…
-
Hi IIRC no you would need to convert gif to jpg or bmp or wmf using an external lib then assign the result to the frpictureview's picture. regards
-
you could declare 2 variables in dictionary to handle the counts pass in when report loaded then in title band set datasource prop ovirtual dataset of each band masterdata1.datasource:= [variablename] or from outside var b:tfrbandview; begin c…
-
read faq.txt regards
-
Hi loryn looking at the simple crosstab demo. since it is using virtual datasets it is some what hard to see how it would line up with a table or query. masterband corresponds to records in the table, crossdataband corresponds to the fieldcount …
-
That would explain why the user function was not triggering. regards
-
Godfrey if you look at the report in design mode either 1 from flex label2c you will find a bit of code in one of the memos scripts, (the last one placed in the band) moved := ufmoverec([lprinted]); moved is a variable it will contain the res…
-
hi IIRC it saves the name and when report is loaded it searches the available printerlist for an index pos that has a match. regards
-
hi loryn [MasterPosition] is variable defind in data dictionary Row ?? is just text formed using altkey and typing 0185 regards
-
The way around is to compile 2 frlib versions load whichever one you want in the ide when required. tip do your own installs manually into 2 different fr folders compile 1 version if bpls are stored under a seperate dir like d7\projects\bpl move t…
-
gordk wrote: compile and run fastreport\demos\reports frdemo.dpr project look at various reports also look at the units of the project datasets is data module, tables queries and frdbdataset connections, unit2 is the form containing report objec…
-
hi In design mode go to files-reportoptions if the printer is available in the window select the printer and check the select when loaded option. regards
-
Keven take a look at the soutce code in one of the export units that should give you some good ideas as to how to create one for dxf. regards
-
Right on Pierre! Omik "I have been doing some testing, I was planning on redoing all my reports in FR251 before releasing the next version of my app. Early in the process (while setting up the ReprtTitle band) I came up on a problem." The title b…
-
Hi I have been using FR in all my apps since fr2.2 Usually some minor bugs at version releases, most have been minor. and when you have registed version you have full source code so you can modify if need be. There is also a self help group on Yah…
-
compile and run fastreport\demos\reports frdemo.dpr project look at various reports also look at the units of the project datasets is data module, tables queries and frdbdataset connections, unit2 is the form containing report objects, regards
-
look for another problem if [[line#]mod 2] then shape1.visible := false else shape1.visible := true; works fine for me in obp event of band in report d7 pro fr2.51 regards
-
see my reply to the same question posted in the fastreport yahoo group. regards
-
hi if [ARTIKELGR] <> where are you setting the value in the variable. or you may want to reverse left and right sides of boolean equation and possibly wrap boolean equation with () or [] regards
-
trychanging ibo4_d7 to suit your ibo package name make sure all search paths are correct and that you haven't removed ibo package from environment. regards
-
try setting centered property true, keep aspect true regards
-
set the memos width set wordwrap set stretched to true and se the bands stretched to true. but you cannot have another memo below the one you are stretching in the same band. regards
-
it could be simple like did you make the fr.inc file for 2.51 the same as the one from 2.5? or if in d7 turn off invalid cast warning? Is there more to the message? does it happen running in ide or outside in compiled exe? Many possibilities, an…
-
dany M level1 det level2 det level3 | produces md1 mrecord1 det1 all recs of det1 belonging to mr1 det2 all recs of det2 belonging to mr1 md1 mr2 det1 all recs of det1 belonging to mr2 det2 all recs of det2 belonging to mr2 md1 mr3 and …
-
IMHO its a no no regards
-
add an empty memo to the band size it to cover the entire band go to conditional highlight in text tool bar add [Line#] mod 2 regards
-
the onuser function is called each time the report encounters the user function regards
-
Hi Danny IMHO The first thing to understand is that the band description names have nothing to do with how the tables are initialy connected that is up to you. The bands are actually a place holder on a design page. Interpret master as data of l…