gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
hi Did the report run before the printer problem? if it did then that may be the problem, it will depend upon what they did, like reinstalling an old bad printer driver. Do you have any other reports in the app that run ok? regards
-
Without more details about the report it is very hard to tell, however if the report and application work fine on your system and not on customers, I would check to make sure you have not hardcoded data basename properties of tables and queries to p…
-
makes ure to set composite to 2pass. regards gord
-
hi ingo see faq.txt gord
-
hi Bcart ok thats one possibility out of the way it could be ReportName := '..\Freports\' + DM1.QryFReportsFileName.Value; is the .. your sub to read easier in this message. if not it should coded to full pathname. if that doesn't do it was ado…
-
Fr is generally bw compatible Ie app compiled withg 2.51 should be able to run report created in previous version, but a app compiled with a previous version cannot run a report created with the newer version. regards gord
-
Yes you can, how you do it depends on where you want them. ie vertical line between pgh and pgf, after you finish designing your report add an overlay band and put a line object in the band. regards gord
-
read the documentation chapter on variables and programming and the faq.txt file. There is a number of ways. regards gord
-
Hi are you trying to change the sql of a report that has a query on a report dialog form at runtime? regards
-
Hi IMHO if you have changed the app so that it has been compiled with a newer version of Fr and created reports with that new version then you must send updated exe to customer. to handle those reports created with new version. Report contains …
-
set report option 2pass regards
-
Since the demo project based on bde, runs ok for you and the message involves the msjet.dll I would expect something involving the data components that access the ms jet engine is amiss. Need more info about your environment. Which data components w…
-
Hi create child bands for each header scenario and tie your child bands to the original header not to each other set which one you want visible in obp of original header. regards
-
can you run the fastreport\demos\reports\frdemo.dpr and see a preview? regards
-
If you are going to preview within the IDE make sure you have viewed the datamodule form once before trying to preview a report. I too have seen this strange behavior. regards gord
-
this is a refrence to the old original oqb for use with the old outdated data manager. it is no longer needed in 2.51. You do not need to uncomment this in the fr.inc file. if you used the install version of 2.51 all necessary files are present. Wh…
-
Typically what i do in modifying page footer contents add extra memos containging what you want and set visible property on and off in the obp of footer using code like begin if ([Page#] = 1) then begin memo1.visible := true; memo2.visible := …
-
Need more info. what are you trying to change in the footer contents of some memos or all different memos or height of page footer band. regards
-
Hi Chuck your tables are connected fine. your bands are ok look at what you have put in each memo in each band. and put in the correct datafield references. ie memo in masterdataband should be [mastertablename."timestamp"] memo in detail1 …
-
I should have said and replace with standard bracket. ([qryTmp."SHIP_VALUE"] / 2.89) or ([qryTmp."SHIP_VALUE"]) / 2.89 regards gord
-
chuck delphi data module or form with tbls datasources etc. mastertbl - tdatasource1- dataset prop mastertbl detailtbl1 - msource prop set to tdatasource1 + approp index detailtbl2 - msource prop set to tdatasource1 + approp index frdbdataset…
-
Hi Chuckie the problem usually lies in connecting the frdbdataset's datasource or dataset property to the wrong object. If your pointing it to a data source component try pointing it to the table instead. only for the detail objects. regards gord
-
Try removing outer square brackets regards gord