Files
lazarus-ccr/components/richview/demo/printfrm.pas

38 lines
519 B
ObjectPascal
Raw Normal View History

{$mode objfpc}{$H+}
unit printfrm;
interface
uses
SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons, LResources;
type
TfrmPrint = class(TForm)
ScrollBox1: TScrollBox;
Panel1: TPanel;
Image1: TImage;
Label1: TLabel;
Panel2: TPanel;
btnOk: TButton;
btnCancel: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmPrint: TfrmPrint;
implementation
{.$R *.DFM}
initialization
{$I PrintFrm.lrs}
end.