fastreport.net 1.5 pro版,带winform和webform,无需破解,因为有注册码,完美使用
2023-05-28 00:44:01 5.92MB fastreport 正式版 注册码
1
FastReport_6.9.15_D11报表组件,亲测D7到DXE11.2都可安装
2023-05-19 09:39:06 16.05MB 开发工具
1
FastReport Vcl 5.3.13 for Delphi7 支持二维码,本人正在使用,有详细的安装说明。
2023-05-17 21:01:41 12.92MB Fast D7
1
FastReport 2022-3 VCL Enterprise
2023-05-16 08:41:29 25.79MB FastReport 2022
1
FastReport修改器,FRF文件打印格式修改器,适用于delphi中,FastReport控件2.5版本的修改.方便好用
2023-05-15 16:20:50 3.47MB FastReport
1
{ 工作中遇到这样的需求,苦苦找不到相关的代码,找到一个还是收费的!:( 本着共享互惠的精神,本人简单实现了一个 FastReport 打印二维码的应用。 使用方法非常简单,将压缩包中的 frx2DBarcode 单元添加到引用即可在报表设计中看到 2D 条码对象,进行设计、打印。 目前仅实现了 QRCcode 的打印,抛砖引玉,相信增加 PDF417,DM 编码应该不会太难。 如果对源代码做了改进和修改欢迎 EMAIL 给我一份,学习一下! 邮件: JulyXDay@QQ.COM 谢谢支持! } {******************************************} { } { FastReport v4.0 } { 2DBarcode object } { } { Copyright (c) 2012 } { by LiKejian } { QQ 39839655 } { } {******************************************} unit frx2DBarcode; interface {$I frx.inc} uses Windows, Messages, SysUtils, Classes, Graphics, frxClass {$IFDEF Delphi6} , Variants {$ENDIF}; type TfrxBarcode2DObject = class(TComponent); // fake component TfrxBarcode2DView = class(TfrxView) private FEccLevel: SmallInt; FModule: SmallInt; FVersion: SmallInt; FText: String; FExpression: String; public constructor Create(AOwner: TComponent); override; procedure Draw(Canvas: TCanvas; ScaleX, ScaleY, OffsetX, OffsetY: Extended); override; class function GetDescription: String; override; procedure GetData; override; published property Version: SmallInt read FVersion write FVersion default 0; property EccLevel: SmallInt read FEccLevel write FEccLevel default 0; property Module: SmallInt read FModule write FModule default 0; property DataField; property DataSet; property DataSetName; property Expression: String read FExpression write FExpression; property Frame; property Text: String read FText write FText; end; implementation uses frx2DBarcodeRTTI, frxDsgnIntf, frxRes, frxUtils, uQRCode; constructor TfrxBarcode2DView.Create(AOwner: TComponent); begin inherited; end; class function TfrxBarcode2DView.GetDescription: String; begin Result := '2D 条形码对象'; end; procedure TfrxBarcode2DView.Draw(Canvas: TCanvas; ScaleX, ScaleY, OffsetX, OffsetY: Extended); const sFileName = 'QRCode.bmp'; var oBmp: TBitmap; begin BeginDraw(Canvas, ScaleX, ScaleY, OffsetX, OffsetY); //Create 2D Barcode CreateQRCode(FText, FVersion, FEccLevel, FModule); if FileExists(sFileName) then begin oBmp := TBitmap.Create; oBmp.LoadFromFile(sFileName); frxDrawGraphic(Canvas, Rect(FX, FY, FX1, FY1), oBmp, IsPrinting, False, False, 0); FreeAndNil(oBmp); end; DrawFrame; end; procedure TfrxBarcode2DView.GetData; begin inherited; if IsDataField then FText := VarToStr(DataSet.Value[DataField]) else if FExpression <> '' then FText := VarToStr(Report.Calc(FExpression)); end; initialization frxObjects.RegisterObject1(TfrxBarcode2DView, nil, '', '', 0, 23); finalization frxObjects.UnRegister(TfrxBarcode2DView); end.
2023-05-05 09:10:37 281KB 二维码 FastReport
1
FastReport VCL Enterprise Edition 4.12 filename : fr4_12_1_d16e.exe for Delphi XE2 FASTREPORT® VCL - report generator for Delphi FastReport® 4 VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the necessary tools to develop reports, including a visual report designer, a reporting core, and a preview window. It can be used in the Embarcadero (ex Borland and CodeGear) Delphi 4-XE2, C++Builder 6-XE2.
2023-04-19 11:49:35 22.04MB FastReport VCL Delphi XE2
1
FastReport 4 VCL 企业版 v4.12.6 Full Source 水印移除 FastReport是非常强大的报表控件,相比QuickReport,ReportBuilder更加灵活,又非常小巧,速度快。VCL版本支持Borland Delphi 2+ and Borland C++Builder 此版本为源码版,7z压缩,已去除水印,无任何限制! 优尼软件,专业软件定制! http://www.un-soft.org
2023-04-19 11:31:19 3.6MB FastReport 企业版 源码 水印
1
FastReport问题整理 1.FastReport中如果访问报表中的对象? 可以使用FindObject方法。 TfrxMemoView(frxReport1.FindObject('memo1')).Text:='FastReport';
2023-04-19 08:28:16 62KB FastReport
1
最新版的 Fase Report 多国语言源码版,支持 XE2 1、如果已安装fastreport,请卸载,详情情况install.txt 2、在XE2 IDE中,设置环境: 1.1.Tools|Environmet options..." 1.2. "Library" tab, "Library path" edit box 1.3. 增加路径: FastReport所在文件夹\FastScript, FastReport所在文件夹\Source, FastReport所在文件夹\Source\BDE,ADO,IBX,DBX, FastReport所在文件夹\Source\ExportPack 3、XE2中打开delphixe2包,在FastReport所在文件夹中,编译; 4、XE2中打开dcldelphixe2包,在FastReport所在文件夹中,编译安装;
2023-04-17 15:30:07 22.69MB FastReport 4.12
1