|
楼主 |
发表于 2007-5-29 15:02:58
|
显示全部楼层
我的代码如下:
var
stringlist: TStrings;
lParam : TBizParam;
lUrl : TBizUrl;
begin
stringlist := TStrings.Create;
lUrl := TBizUrl.Create;
try
lUrl.URL := 'Biz:\SCGLXT\YWCSZ.ParamGroup\KSSJ.Param';
lParam := SystemUtils.TContextUtils.GetParam(Context,lUrl);
stringlist.AddObject('KSSJ',lParam);
stringlist.AddObject('JSSJ',lParam);
SystemCore.TSYSTEMCORE.SystemInterface.EditParamsValue(Context, stringlist);
finally
lUrl.Free;
stringlist.Free;
end;
end;
运行时报错:Abstract Error |
|