|
function CombDel_selectchanged()
var Row,Low
Rest=help.confirmationbox("当前文件以存在,添加现有文件中?","提示",2,true)
if(Rest==7)
DelStr=str.replace(combo.gettext("CombDel"),"删除","")
grid.getsize("gridctrl0",Row,Low)
for(i=1;i<Row;i++)
ListStr=grid.getcontent("gridctrl0",i,5)
traceprint(ListStr&DelStr)
if(ListStr==DelStr)
grid.deleterow("gridctrl0",i,"DH")
endif
endfor
endif
endfunction |
|