1 | unit frmSplash;
|
---|
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 | interface
|
---|
28 |
|
---|
29 | uses
|
---|
30 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
---|
31 | Dialogs, StdCtrls, jpeg, ExtCtrls;
|
---|
32 |
|
---|
33 | type
|
---|
34 | TSplashForm = class(TForm)
|
---|
35 | Image1: TImage;
|
---|
36 | procedure Image1Click(Sender: TObject);
|
---|
37 | private
|
---|
38 | { Private declarations }
|
---|
39 | public
|
---|
40 | { Public declarations }
|
---|
41 | end;
|
---|
42 |
|
---|
43 | var
|
---|
44 | SplashForm: TSplashForm;
|
---|
45 |
|
---|
46 | implementation
|
---|
47 |
|
---|
48 | {$R *.dfm}
|
---|
49 |
|
---|
50 | procedure TSplashForm.Image1Click(Sender: TObject);
|
---|
51 | begin
|
---|
52 | hide;
|
---|
53 | end;
|
---|
54 |
|
---|
55 | end.
|
---|
56 |
|
---|