source: trunk/Components/CustomBitmapButton.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: 428 bytes
RevLine 
[15]1Unit CustomBitmapButton;
2// Custom bitrmap button is now an alias of TBitBtn,
3// for backwards compatibility; all the fixes in it are now
4// in TBitBtn in my fixed SPCC.
5
6Interface
7
8Uses
9 Classes, Buttons;
10
11Type
12 TCustomBitmapButton = class( TBitBtn )
13 End;
14
15Exports
16 TCustomBitmapButton,'User','CustomBitmapButton.bmp';
17
18Implementation
19
20
21Initialization
22 {Register classes}
23 RegisterClasses([TCustomBitmapButton]);
24End.
25
Note: See TracBrowser for help on using the repository browser.