source: cprs/trunk/BDK32/Source/fSignonConfigColor.pas@ 829

Last change on this file since 829 was 829, checked in by Kevin Toppenberg, 14 years ago

Upgrade to version 27

File size: 847 bytes
Line 
1{ **************************************************************
2 Package: XWB - Kernel RPCBroker
3 Date Created: Sept 18, 1997 (Version 1.1)
4 Site Name: Oakland, OI Field Office, Dept of Veteran Affairs
5 Developers: Joel Ivey
6 Description: Color selection for signon form.
7 Current Release: Version 1.1 Patch 40 (January 7, 2005))
8*************************************************************** }
9
10unit fSignonConfigColor;
11
12interface
13
14uses
15 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
16 StdCtrls, Buttons;
17
18type
19 TfrmColorSelectDialog = class(TForm)
20 btnOK: TBitBtn;
21 btnNO: TBitBtn;
22 Label1: TLabel;
23 private
24 { Private declarations }
25 public
26 { Public declarations }
27 end;
28
29var
30 frmColorSelectDialog: TfrmColorSelectDialog;
31
32implementation
33
34{$R *.DFM}
35
36end.
Note: See TracBrowser for help on using the repository browser.