自动生成id到textbox和datagridview

时间:2014-11-12 17:58:19

标签: c# auto-generate

我的代码有问题;当我运行我的程序时,它会产生以下错误:"输入字符串的格式不正确"。

这是我的代码:

public String generateID()
{
    String newID = "";           
    String lastID =dataGridView1.Rows[dataGridView1.RowCount1].Cells[0].Value.ToString();                
    newID = lastID.Substring(1);
    int temp = Int32.Parse(newID) + 1;
    newID = "E" + temp.ToString("00");
    return newID;
}


private void btnInsert_Click(object sender, EventArgs e)
{            
    textBox1.Text = generateID();                       
}

1 个答案:

答案 0 :(得分:0)

这是因为newID不包含整数的字符串表示形式。细胞是空的吗?您应确保单元格始终包含有效值。或者,使用Int32.TryParse来优雅地处理错误。