我的 Delphi 项目中有 4 个units
(也有 4 个表单),并且我有一个Unit 2
称为“controlla”的过程。
procedure TForm2.controlla(numero:TEdit);
var a:string;
begin
// the code
end;
我做了这个程序,因为它将十进制数转换为小数。顺便说一句,我也必须使用这个功能Unit 4
。
我想我可以用这个函数做一个 *.dll 库。在尝试 libraby 方式之前,是否有任何方法可以让我使用controlla(numero:TEdit)
,即在单元 2 中,在没有 dll 的单元 4 中?