Last change
on this file since 1671 was 830, checked in by Kevin Toppenberg, 14 years ago |
Upgrading to version 27
|
File size:
600 bytes
|
Line | |
---|
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
|
---|
16 | constructor Create(AOwner: TComponent); override;
|
---|
17 | end;
|
---|
18 |
|
---|
19 | implementation
|
---|
20 |
|
---|
21 | uses VA508AccessibilityRouter;
|
---|
22 |
|
---|
23 | {$R *.DFM}
|
---|
24 |
|
---|
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 |
|
---|
36 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.