33 lines
594 B
Plaintext
33 lines
594 B
Plaintext
unit DDecPolMain;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Buttons, Vcl.StdCtrls, Vcl.ExtCtrls;
|
|
|
|
type
|
|
TDlgDecPolMain = class(TForm)
|
|
pnTop: TPanel;
|
|
pnClient: TPanel;
|
|
edPath: TEdit;
|
|
Label1: TLabel;
|
|
SpeedButton1: TSpeedButton;
|
|
btnDec: TSpeedButton;
|
|
mmInfo: TMemo;
|
|
OpenDialog: TOpenDialog;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
DlgDecPolMain: TDlgDecPolMain;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|