[トピック内 5 記事 (1 - 5 表示)] << 0 >>
VC2008 いつもお世話になっています。 BindingSourceで特定のID値にカレントを移動させたいのですが、 以下のような方法になるのでしょうか。 それとも、もう少し簡単な方法があるのでしょうか? ご指導お願いします。 private void button1_Click(object sender, EventArgs e) { int myID = 3; // 移動先ID myBindingSource.MoveFirst(); while (myBindingSource.Position > -1) { DataRowView dr = (DataRowView)myBindingSource.Current; if((int)dr["ID"]==myID) return; myBindingSource.MoveNext(); } }
管理者用
- Child Tree -