来自anwser的基础如何消除变量...当我拥有所有这些组件并从主窗体中进行按钮1.click之类的操作时,我得到并接受了它的工作原理...
但我习惯从单位做出行动......所以
当我单击一个按钮时,我会看到一个过程 DoMaths(Sender: TObject);
procedure Tform1.DoMaths(Sender: TObject);
begin
if TButton1(Sender).hint := 'Make the standard Package' then
do_Maths_standard_package;
end;
do_Maths_standard_package 在单位 ComplexMaths 中。
是程序 do_Maths_standard_package 表单单元 ComplexMaths 它从 Form1 调用一些组件...例如 Form1.label1 等...
因此,当我调用 RegisterClass(TLabel) 并从类型中删除 Tlabel 时,它会给出一个错误,它无法找到 Label1 ...
请有人可以帮助我,以免从一开始就进行洞计划...
谢谢..