Last change
on this file since 1556 was 830, checked in by Kevin Toppenberg, 14 years ago |
Upgrading to version 27
|
File size:
600 bytes
|
Rev | Line | |
---|
[456] | 1 | unit mImgText;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
| 7 | StdCtrls, ExtCtrls;
|
---|
| 8 |
|
---|
| 9 | type
|
---|
| 10 | TfraImgText = class(TFrame)
|
---|
| 11 | img: TImage;
|
---|
| 12 | lblText: TLabel;
|
---|
| 13 | private
|
---|
| 14 | { Private declarations }
|
---|
| 15 | public
|
---|
[830] | 16 | constructor Create(AOwner: TComponent); override;
|
---|
[456] | 17 | end;
|
---|
| 18 |
|
---|
| 19 | implementation
|
---|
| 20 |
|
---|
[830] | 21 | uses VA508AccessibilityRouter;
|
---|
| 22 |
|
---|
[456] | 23 | {$R *.DFM}
|
---|
| 24 |
|
---|
[830] | 25 | { TfraImgText }
|
---|
| 26 |
|
---|
| 27 | constructor TfraImgText.Create(AOwner: TComponent);
|
---|
| 28 | begin
|
---|
| 29 | inherited Create(AOwner);
|
---|
| 30 | TabStop := FALSE;
|
---|
| 31 | end;
|
---|
| 32 |
|
---|
| 33 | initialization
|
---|
| 34 | SpecifyFormIsNotADialog(TfraImgText);
|
---|
| 35 |
|
---|
[456] | 36 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.