AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
TfrPrintGrid can't print graphic fields. It's just impossible 'by design'. Before printing such grid, you have to iterate all column and make blob columns invisible.
-
you're right - it still exists (no problem in full version, only in trial). We plan to release the FR CLX in this month and will fix this.
-
Try to make a simple print without using FR: Printer.BeginDoc; Printer.Canvas.TextOut(100, 100, 'test'); Printer.EndDoc; if this code won't work, there is a problem with CLX/Qt, not FR.
-
Read the knownbugs.txt file. CLX (actually QT) can't print in landscape under Windows. Even the simplest code (without using FR) will not work: Printer.Orientation := poLandscape; Printer.BeginDoc; Printer.TextOut(100, 100, 'test'); Printer.EndD…
-
1) no, FR3.0 have much less initialization code and almost no global objects. 2) not in the near future. 3) forget about FR if you want QT-less code.
-
1) yes, it is possible, the main demo demonstrates this. just add your form class fsGlobalUnit.AddClass(TForm1, 'TForm'); and any controls instance fsScript1.AddObject('Form1', Self); and you can use it in a script. 2) COM is not suppo…
-
Yes, you can use FS in BCB6.0 CLX. There is no package for bcbclx, as well as trial for all clx versions. We'll add this in the next release which is coming soon.
-
This is already realized in the FS1.2 which comes soon.
-
strange, just change fs7.dpk, TEE to TEE67. It should compile ok. However, if you want to exclude tee package from FS, remove 'requires TEE' and 'contains fs_ichartrtti' from .dpk and fs_ichartrtti from fs_ireg.pas (also remove TfsChartRTTI from Reg…
-
Fix the oqbfib60.dpk file: requires // ascstd // remove this and add next line: FIBPLUS6
-
You have to write OQB engine for DBISAM. You can use bde, ado or ibx engines code as a sample. Here is a DBISAM engine code from FastReport powerpack, you may try to use it: uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms…
-
with frReport1.Pages[0] do ChangePaper(pgSize, pgWidth, pgHeight, pgBin, poLandscape)
-
Please send an example of your application with this error. RichEdit control can't justify its text.
-
You have to write add-in component for FR. You can use FR_ChBox.pas component as an example.
-
it is in alpha-testing now