git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
49 lines
863 B
ObjectPascal
49 lines
863 B
ObjectPascal
unit UpdateAction;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
StdCtrls, ExtCtrls, Buttons;
|
|
|
|
type
|
|
TUpdateActionForm = class(TForm)
|
|
Panel1: TPanel;
|
|
Panel5: TPanel;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
lbField: TLabel;
|
|
lbMessage: TLabel;
|
|
Panel7: TPanel;
|
|
rgAction: TRadioGroup;
|
|
Panel4: TPanel;
|
|
rgKind: TRadioGroup;
|
|
Panel9: TPanel;
|
|
Panel2: TPanel;
|
|
btOk: TSpeedButton;
|
|
procedure btOkClick(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
UpdateActionForm: TUpdateActionForm;
|
|
|
|
implementation
|
|
|
|
{$IFDEF CLR}
|
|
{$R *.nfm}
|
|
{$ENDIF}
|
|
{$IFDEF WIN32}
|
|
{$R *.dfm}
|
|
{$ENDIF}
|
|
|
|
procedure TUpdateActionForm.btOkClick(Sender: TObject);
|
|
begin
|
|
ModalResult := mrOk;
|
|
end;
|
|
|
|
end.
|