简单的小问题(30分)

  • 主题发起人 主题发起人 电暖气
  • 开始时间 开始时间

电暖气

Unregistered / Unconfirmed
GUEST, unregistred user!
控件lable1用程序来显示
不是这样的显示Label1.Visible :=true;
我的程序中只能将Label1送入一个字符串中
var
s: string;
begin
s:='Label1';
//不会了
//s.Visible :=true;
//Label1.Visible :=true;
end;
 
procedure TForm1.Button1Click(Sender: TObject);
begin
TLabel(Form1.FindComponent('Label1')).Visible := True;
end;
如果你的 Label 放在 Form 上,否则用 Label 的 Parent 代替上面的 Form1。
 
那是不是delphi中就没有像c语言中的指针类似的东西呢?

如果有,那是什么呢?

没有的话,该通过什么方法来实现呢?
 
var
s:TLabel;
begin
s:=Label1;
s.Visible :=true;
end;
 
BaKuBaKu你真厉害
分数太少,不成敬意。多谢了。。。。。。。。。。。。
 
后退
顶部