Z
zulu
Unregistered / Unconfirmed
GUEST, unregistred user!
程序是这样
TestDll:=CoTestFormDll.Create; //创建连接
TestDll.Deh:='hello'; //给Deh属性赋值
其中,在Dll中的赋值过程是给Dll中的Form1中的Edit1赋值。
procedure TTestFormDll.Set_Deh(const Value: WideString);
begin
Form1.Edit1.Text:=Value;
end;
但是我注册了这个Dll啊。
难道不能这样访问Form中的Dll吗?
TestDll:=CoTestFormDll.Create; //创建连接
TestDll.Deh:='hello'; //给Deh属性赋值
其中,在Dll中的赋值过程是给Dll中的Form1中的Edit1赋值。
procedure TTestFormDll.Set_Deh(const Value: WideString);
begin
Form1.Edit1.Text:=Value;
end;
但是我注册了这个Dll啊。
难道不能这样访问Form中的Dll吗?