-
Notifications
You must be signed in to change notification settings - Fork 2
/
NewProcessStatusUnit.pas
executable file
·66 lines (55 loc) · 1.52 KB
/
NewProcessStatusUnit.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
63
64
65
66
unit NewProcessStatusUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TntForms, StdCtrls, Buttons, TntButtons, TntStdCtrls;
type
TNewProcessStatusForm = class(TTntForm)
TntLabel1: TTntLabel;
TntLabel2: TTntLabel;
TntEdit1: TTntEdit;
TntEdit2: TTntEdit;
TntBitBtn1: TTntBitBtn;
TntBitBtn2: TTntBitBtn;
procedure TntBitBtn1Click(Sender: TObject);
procedure TntBitBtn2Click(Sender: TObject);
procedure TntFormActivate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
NewProcessStatusForm: TNewProcessStatusForm;
implementation
uses DataUnit, GlobalProcedures;
{$R *.DFM}
procedure TNewProcessStatusForm.TntBitBtn1Click(Sender: TObject);
begin
with Data.processstatus do
begin
Append;
FieldByName('name').AsVariant := TntEdit2.Text;
FieldByName('code').AsVariant := TntEdit1.Text;
PostTable(Data.processstatus);
Refresh;
end;
end;
procedure TNewProcessStatusForm.TntBitBtn2Click(Sender: TObject);
begin
if MessYesNo('Do you want to save? ') then
with Data.processstatus do
begin
Append;
FieldByName('name').AsVariant := TntEdit2.Text;
FieldByName('code').AsVariant := TntEdit1.Text;
PostTable(Data.processstatus);
Refresh;
end;
end;
procedure TNewProcessStatusForm.TntFormActivate(Sender: TObject);
begin
TntEdit1.Text := '';
TntEdit2.Text := '';
end;
end.