1 | program GUI_Config;
|
---|
2 | (*
|
---|
3 | WorldVistA Configuration Utility
|
---|
4 | (c) 8/2008 Kevin Toppenberg
|
---|
5 | Programmed by Kevin Toppenberg, Eddie Hagood
|
---|
6 |
|
---|
7 | Family Physicians of Greeneville, PC
|
---|
8 | 1410 Tusculum Blvd, Suite 2600
|
---|
9 | Greeneville, TN 37745
|
---|
10 | kdtop@yahoo.com
|
---|
11 |
|
---|
12 | This library is free software; you can redistribute it and/or
|
---|
13 | modify it under the terms of the GNU Lesser General Public
|
---|
14 | License as published by the Free Software Foundation; either
|
---|
15 | version 2.1 of the License, or (at your option) any later version.
|
---|
16 |
|
---|
17 | This library is distributed in the hope that it will be useful,
|
---|
18 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | Lesser General Public License for more details.
|
---|
21 |
|
---|
22 | You should have received a copy of the GNU Lesser General Public
|
---|
23 | License along with this library; if not, write to the Free Software
|
---|
24 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
---|
25 | *)
|
---|
26 |
|
---|
27 | uses
|
---|
28 | Forms,
|
---|
29 | MainU in 'MainU.pas' {MainForm},
|
---|
30 | ORFn in '..\CPRS-Lib\ORFn.pas',
|
---|
31 | frmSplash in 'frmSplash.pas' {SplashForm},
|
---|
32 | LookupU in 'LookupU.pas' {FieldLookupForm},
|
---|
33 | SubfilesU in 'SubfilesU.pas' {SubfileForm},
|
---|
34 | SetSelU in 'SetSelU.pas' {SetSelForm},
|
---|
35 | SelDateTimeU in 'SelDateTimeU.pas' {SelDateTimeForm},
|
---|
36 | PostU in 'PostU.pas' {PostForm},
|
---|
37 | FMErrorU in 'FMErrorU.pas' {FMErrorForm},
|
---|
38 | AboutU in 'AboutU.pas' {AboutForm},
|
---|
39 | PleaseWaitU in 'PleaseWaitU.pas' {WaitForm},
|
---|
40 | EditTextU in 'EditTextU.pas' {EditTextForm},
|
---|
41 | CreateTemplateU in 'CreateTemplateU.pas' {CreateTemplateForm},
|
---|
42 | SkinFormU in 'SkinFormU.pas' {SkinForm},
|
---|
43 | BatchAddU in 'BatchAddU.pas' {BatchAddForm},
|
---|
44 | DebugU in 'DebugU.pas' {DebugForm};
|
---|
45 |
|
---|
46 | {$R *.res}
|
---|
47 |
|
---|
48 | begin
|
---|
49 | Application.Initialize;
|
---|
50 | Application.Title := 'WorldVistA Configuration Utility';
|
---|
51 | Application.CreateForm(TMainForm, MainForm);
|
---|
52 | Application.CreateForm(TSkinForm, SkinForm);
|
---|
53 | Application.CreateForm(TSplashForm, SplashForm);
|
---|
54 | Application.CreateForm(TFieldLookupForm, FieldLookupForm);
|
---|
55 | Application.CreateForm(TSetSelForm, SetSelForm);
|
---|
56 | Application.CreateForm(TSelDateTimeForm, SelDateTimeForm);
|
---|
57 | Application.CreateForm(TPostForm, PostForm);
|
---|
58 | Application.CreateForm(TFMErrorForm, FMErrorForm);
|
---|
59 | Application.CreateForm(TAboutForm, AboutForm);
|
---|
60 | Application.CreateForm(TWaitForm, WaitForm);
|
---|
61 | Application.CreateForm(TEditTextForm, EditTextForm);
|
---|
62 | Application.CreateForm(TCreateTemplateForm, CreateTemplateForm);
|
---|
63 | Application.CreateForm(TBatchAddForm, BatchAddForm);
|
---|
64 | Application.CreateForm(TDebugForm, DebugForm);
|
---|
65 | MainForm.Initialize;
|
---|
66 | Application.Run;
|
---|
67 | end.
|
---|
68 |
|
---|