| function
make_label(Lparent:Twincontrol;LLeft:integer;LTop:integer;LCaption:TCaption)
:TLabel; |
| |
Var |
|
|
| |
|
MyLable
: TControl; |
|
| |
Begin |
|
|
| |
|
MyLable:=Tlabel.Create(nil); |
|
| |
|
Tlabel
(Mylable).Parent:=Lparent; |
|
| |
|
Tlabel
(Mylable).Left:=LLeft; |
|
| |
|
Tlabel
(Mylable).Top:=LTop; |
|
| |
|
Tlabel
(Mylable).Caption:=LCaption; |
|
| |
|
make_label:=Tlabel
(Mylable); |
|
| |
End; |
|
|