-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNewBranchUnit.pas
executable file
·62 lines (52 loc) · 1.51 KB
/
NewBranchUnit.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
unit NewBranchUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TntForms, StdCtrls, Buttons, TntButtons, TntStdCtrls;
type
TNewBranchForm = class(TTntForm)
TntLabel1: TTntLabel;
TntLabel2: TTntLabel;
TntEdit1: TTntEdit;
TntEdit2: TTntEdit;
TntBitBtn1: TTntBitBtn;
TntBitBtn2: TTntBitBtn;
procedure TntFormActivate(Sender: TObject);
procedure TntFormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
NewBranchForm: TNewBranchForm;
implementation
uses DataUnit, GlobalProcedures;
{$R *.DFM}
procedure TNewBranchForm.TntFormActivate(Sender: TObject);
begin
if not data.branch.FieldByName('code').IsNull then
TntEdit1.Text := data.branch.FieldByName('code').Asvariant
else
TntEdit1.Text := '';
if not data.branch.FieldByName('name').IsNull then
TntEdit2.Text := data.branch.FieldByName('name').Asvariant
else
TntEdit2.Text := '';
TntEdit1.SetFocus;
end;
procedure TNewBranchForm.TntFormClose(Sender: TObject;
var Action: TCloseAction);
begin
case ModalResult of
mrOK:
begin
data.branch.fieldbyname('name').AsVariant := TntEdit2.Text;
data.branch.FieldByName('code').AsVariant := TntEdit1.Text;
PostTable(Data.branch);
data.branch.Refresh;
end;
mrCancel: CancelTable(data.branch);
end;
end;
end.