回复 9楼roger.wang的帖子
没有报错。只是不能显示逗号。
代码如下:
int rowCount = tnPeriodInfo.Rows.Count;
for(int i = 0; i < rowCount; i++)
{
// 2013/11/11 hw 设置列类型******************** Add >>
this.grdMain.Cols[1].DataType = typeof(int);
this.grdMain.Cols[3].DataType = typeof(int);
// 2013/11/11 hw 设置列类型******************** <<
this.grdMain.SetData(i + 1, 1, Conv.GetInt(tnPeriodInfo.Rows["CODE"].ToString()));
this.grdMain.SetData(i + 1, 2, tnPeriodInfo.Rows["NAME"].ToString());
this.grdMain.SetData(i + 1, 3, Conv.GetInt(tnPeriodInfo.Rows["期間売上計"]).ToString("###,###,##0"));
} |