X
xgwzw
Unregistered / Unconfirmed
GUEST, unregistred user!
2个程序sharemem都在第一位
app
//chklst1.Items:= GetTcal;
chklst1.Items.Assign(GetTcal);//报错cannot assign a tstringlist to a tlistboxstrings
dll
function GetTcal:TStrings; stdcall;
begin
Result:=TStringList.Create;
Result.Add('1');
Result.Add('2');
Result.Add('3');
end;
exports GetTcal;
app
//chklst1.Items:= GetTcal;
chklst1.Items.Assign(GetTcal);//报错cannot assign a tstringlist to a tlistboxstrings
dll
function GetTcal:TStrings; stdcall;
begin
Result:=TStringList.Create;
Result.Add('1');
Result.Add('2');
Result.Add('3');
end;
exports GetTcal;