| [476] | 1 | unit PleaseWaitU; | 
|---|
|  | 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; | 
|---|
|  | 32 |  | 
|---|
|  | 33 | type | 
|---|
|  | 34 | TWaitForm = class(TForm) | 
|---|
|  | 35 | Label1: TLabel; | 
|---|
|  | 36 | private | 
|---|
|  | 37 | { Private declarations } | 
|---|
|  | 38 | public | 
|---|
|  | 39 | { Public declarations } | 
|---|
|  | 40 | end; | 
|---|
|  | 41 |  | 
|---|
|  | 42 | var | 
|---|
|  | 43 | WaitForm: TWaitForm; | 
|---|
|  | 44 |  | 
|---|
|  | 45 | implementation | 
|---|
|  | 46 |  | 
|---|
|  | 47 | {$R *.dfm} | 
|---|
|  | 48 |  | 
|---|
|  | 49 | end. | 
|---|
|  | 50 |  | 
|---|