Last change
on this file since 1681 was 453, checked in by Kevin Toppenberg, 16 years ago |
Initial upload of TMG-CPRS 1.0.26.69
|
File size:
1.6 KB
|
Line | |
---|
1 | //kt -- Modified with SourceScanner on 8/7/2007
|
---|
2 | unit tfVType;
|
---|
3 |
|
---|
4 | interface
|
---|
5 |
|
---|
6 | uses
|
---|
7 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
8 | StdCtrls, ExtCtrls;
|
---|
9 |
|
---|
10 | type
|
---|
11 | TfrmLaunch = class(TForm)
|
---|
12 | grpFontSize: TRadioGroup;
|
---|
13 | cmdShow: TButton;
|
---|
14 | Edit1: TEdit;
|
---|
15 | Label1: TLabel;
|
---|
16 | cmdClose: TButton;
|
---|
17 | procedure cmdShowClick(Sender: TObject);
|
---|
18 | procedure FormCreate(Sender: TObject);
|
---|
19 | procedure cmdCloseClick(Sender: TObject);
|
---|
20 | private
|
---|
21 | { Private declarations }
|
---|
22 | public
|
---|
23 | { Public declarations }
|
---|
24 | end;
|
---|
25 |
|
---|
26 | var
|
---|
27 | frmLaunch: TfrmLaunch;
|
---|
28 |
|
---|
29 | implementation
|
---|
30 |
|
---|
31 | {$R *.DFM}
|
---|
32 |
|
---|
33 | uses ORFn, ORNet, fVType, uCore;
|
---|
34 |
|
---|
35 | procedure TfrmLaunch.FormCreate(Sender: TObject);
|
---|
36 | begin
|
---|
37 | if not ConnectToServer('OR CPRS GUI CHART') then
|
---|
38 | begin
|
---|
39 | Close; // need a way to exit without needing the broker (close may call it)
|
---|
40 | Exit;
|
---|
41 | end;
|
---|
42 | User := TUser.Create; // creates the user object defined in uCore
|
---|
43 | Patient := TPatient.Create; // creates the patient object defined in uCore
|
---|
44 | Encounter := TEncounter.Create; // creates the encounter object defined in uCore
|
---|
45 | Encounter.Location := 16;
|
---|
46 | end;
|
---|
47 |
|
---|
48 | procedure TfrmLaunch.cmdShowClick(Sender: TObject);
|
---|
49 | begin
|
---|
50 | case grpFontSize.ItemIndex of
|
---|
51 | 0: Self.Font.Size := 8;
|
---|
52 | 1: Self.Font.Size := 10;
|
---|
53 | 2: Self.Font.Size := 12;
|
---|
54 | 3: Self.Font.Size := 14;
|
---|
55 | 4: Self.Font.Size := 18;
|
---|
56 | end;
|
---|
57 | UpdateVisitType;
|
---|
58 | //Edit1.Text := IntToStr(Patient.DFN) + U + Patient.Name + U + Encounter.LocationName;
|
---|
59 | end;
|
---|
60 |
|
---|
61 | procedure TfrmLaunch.cmdCloseClick(Sender: TObject);
|
---|
62 | begin
|
---|
63 | Close;
|
---|
64 | end;
|
---|
65 |
|
---|
66 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.