You've already forked lazarus-ccr
38 lines
519 B
ObjectPascal
38 lines
519 B
ObjectPascal
![]() |
{$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.
|