Componentes.Terceros.FastRe.../internal/4.2/1/Source/frxInheritError.pas
2007-11-18 19:40:07 +00:00

76 lines
1.7 KiB
ObjectPascal

{******************************************}
{ }
{ FastReport v4.0 }
{ Inherit error dialog }
{ }
{ Copyright (c) 1998-2007 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{******************************************}
unit frxInheritError;
interface
{$I frx.inc}
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ImgList, ExtCtrls
{$IFDEF Delphi6}
, Variants
{$ENDIF};
type
TfrxInheritErrorForm = class(TForm)
OkB: TButton;
CancelB: TButton;
MessageL: TLabel;
DeleteRB: TRadioButton;
RenameRB: TRadioButton;
PaintBox1: TPaintBox;
ImageList1: TImageList;
procedure FormCreate(Sender: TObject);
procedure PaintBox1Paint(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
uses frxRes;
procedure TfrxInheritErrorForm.FormCreate(Sender: TObject);
begin
Caption := frxGet(6000);
OkB.Caption := frxGet(1);
CancelB.Caption := frxGet(2);
MessageL.Caption := frxGet(6001);
DeleteRB.Caption := frxGet(6002);
RenameRB.Caption := frxGet(6003);
if UseRightToLeftAlignment then
FlipChildren(True);
end;
procedure TfrxInheritErrorForm.PaintBox1Paint(Sender: TObject);
begin
with PaintBox1 do
begin
Canvas.Brush.Color := Color;
Canvas.FillRect(Rect(0, 0, 32, 32));
ImageList1.Draw(Canvas, 0, 0, 0);
end;
end;
end.
//862fd5d6aa1a637203d9b08a3c0bcfb0