source: trunk/Components/NonSizableDialogUnit.pas@ 91

Last change on this file since 91 was 15, checked in by RBRi, 19 years ago

+ components stuff

  • Property svn:eol-style set to native
File size: 407 bytes
RevLine 
[15]1Unit NonSizableDialogUnit;
2
3Interface
4
5Uses
6 Classes, Forms, Graphics, Buttons;
7
8Type
9 TNonSizableDialog = Class (TForm)
10 OKButton: TBitBtn;
11 CancelButton: TBitBtn;
12 Private
13 {Insert private declarations here}
14 Public
15 {Insert public declarations here}
16 End;
17
18Var
19 NonSizableDialog: TNonSizableDialog;
20
21Implementation
22
23Initialization
24 RegisterClasses ([TNonSizableDialog, TBitBtn]);
25End.
Note: See TracBrowser for help on using the repository browser.