-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewpatient_u.pas
49 lines (41 loc) · 1.02 KB
/
newpatient_u.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
unit newpatient_u;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Buttons, Spin, StdCtrls, ExtCtrls, CheckLst;
type
TfrmNewPatient = class(TForm)
lblAge: TLabel;
lblNoK: TLabel;
btnEnter: TButton;
ledID: TLabeledEdit;
LabeledEdit1: TLabeledEdit;
ledCell: TLabeledEdit;
ledSurname: TLabeledEdit;
ledName: TLabeledEdit;
ledNoKContact: TLabeledEdit;
ledNoKName: TLabeledEdit;
LabeledEdit7: TLabeledEdit;
ledNoKRelationship: TLabeledEdit;
ledNoKSurname: TLabeledEdit;
ledNoKID: TLabeledEdit;
rgpGender: TRadioGroup;
sedAge: TSpinEdit;
bmbCancel: TBitBtn;
clxGeneralHealth: TCheckListBox;
CheckListBox1: TCheckListBox;
procedure bmbCancelClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmNewPatient: TfrmNewPatient;
implementation
{$R *.dfm}
procedure TfrmNewPatient.bmbCancelClick(Sender: TObject);
begin
frmNewPatient.Close;
end;
end.