source: cprs/branches/GUI-config/GUI_Config.dpr@ 1806

Last change on this file since 1806 was 542, checked in by Kevin Toppenberg, 15 years ago

v1.1 Fixes Access/Verify code issues

File size: 2.6 KB
Line 
1program 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
27uses
28 Forms,
29 MainU in 'MainU.pas' {MainForm},
30 frmSplash in 'frmSplash.pas' {SplashForm},
31 LookupU in 'LookupU.pas' {FieldLookupForm},
32 SubfilesU in 'SubfilesU.pas' {SubfileForm},
33 SetSelU in 'SetSelU.pas' {SetSelForm},
34 SelDateTimeU in 'SelDateTimeU.pas' {SelDateTimeForm},
35 PostU in 'PostU.pas' {PostForm},
36 FMErrorU in 'FMErrorU.pas' {FMErrorForm},
37 AboutU in 'AboutU.pas' {AboutForm},
38 PleaseWaitU in 'PleaseWaitU.pas' {WaitForm},
39 EditTextU in 'EditTextU.pas' {EditTextForm},
40 CreateTemplateU in 'CreateTemplateU.pas' {CreateTemplateForm},
41 SkinFormU in 'SkinFormU.pas' {SkinForm},
42 BatchAddU in 'BatchAddU.pas' {BatchAddForm},
43 DebugU in 'DebugU.pas' {DebugForm};
44
45{$R *.res}
46
47begin
48 Application.Initialize;
49 Application.Title := 'WorldVistA Configuration Utility';
50 Application.CreateForm(TMainForm, MainForm);
51 Application.CreateForm(TSkinForm, SkinForm);
52 Application.CreateForm(TSplashForm, SplashForm);
53 Application.CreateForm(TFieldLookupForm, FieldLookupForm);
54 Application.CreateForm(TSetSelForm, SetSelForm);
55 Application.CreateForm(TSelDateTimeForm, SelDateTimeForm);
56 Application.CreateForm(TPostForm, PostForm);
57 Application.CreateForm(TFMErrorForm, FMErrorForm);
58 Application.CreateForm(TAboutForm, AboutForm);
59 Application.CreateForm(TWaitForm, WaitForm);
60 Application.CreateForm(TEditTextForm, EditTextForm);
61 Application.CreateForm(TCreateTemplateForm, CreateTemplateForm);
62 Application.CreateForm(TBatchAddForm, BatchAddForm);
63 Application.CreateForm(TDebugForm, DebugForm);
64 MainForm.Initialize;
65 Application.Run;
66end.
67
Note: See TracBrowser for help on using the repository browser.