InBlock.gif private void dataGridView1_CellFormatting( object sender, DataGridViewCellFormattingEventArgs e)
InBlock.gif        {
InBlock.gif             if (e.ColumnIndex == 4)
InBlock.gif            {
InBlock.gif                 if (e.Value.ToString() == "c" && e.Value.ToString().Length > 0)
InBlock.gif                {
InBlock.gif                     // e.Value = string.Empty.PadLeft(e.Value.ToString().Length, '*');
InBlock.gif                    e.Value = "已处理";
InBlock.gif                }
InBlock.gif                 else
InBlock.gif                {
InBlock.gif                    e.Value = "未处理";
InBlock.gif
InBlock.gif                }
InBlock.gif            }
InBlock.gif             if (e.ColumnIndex == 6)
InBlock.gif            {
InBlock.gif                 if (e.Value.ToString() == "Y" && e.Value.ToString().Length > 0)
InBlock.gif                {
InBlock.gif                    e.Value = "需要发票";
InBlock.gif                }
InBlock.gif                 else
InBlock.gif                {
InBlock.gif                    e.Value = "不需要发票";
InBlock.gif                }
InBlock.gif            }
InBlock.gif        }