我有以下行:獲得一個子導致的錯誤
if (dataGridView1.Rows[i].Cells[0].Value.ToString().Length >= 13){
e.Graphics.DrawString
(dataGridView1.Rows[i].Cells[0].Value.ToString().Substring(0,14),
print6B, Brushes.Black, x-10, 130 + height);
}
else {
因爲子串的方法,我得到這個錯誤: 索引和長度必須引用位置C#
字符串中什麼是獲得字符串的前14個字符的最佳方法?
我有上面這個:for(int i = 1; i <= dataGridView1.Rows.Count; i ++) – 2012-02-21 17:13:29
你確定它沒有抓住頁腳(假設有一個)? – Ben 2012-02-21 17:16:32
你是對的第一!謝謝 ! – 2012-02-21 17:19:42