负数归零

来源:互联网 发布:linux home代表什么 编辑:程序博客网 时间:2024/05/01 02:06
 

int col;
int row;

for col = 1 to #rpt0.ColCount() step 1
for row = 1 to #rpt0.RowCount()+1 step 1
if #rpt0.Val(col,row) <= -99999 then
   #rpt0.SetVal(col,row,0);
endif
next
next

原创粉丝点击