Visual Basic 中学校 掲示板 投稿の管理
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
投稿一覧
DataGridView のデータ取得をDataSetのような形でできないでしょうか?
この投稿へのリンク
https://keijiban.umayadia.com/ThreadDetail.aspx?ThreadId=9203#CommentId12014
この投稿の削除
削除パスワード
削除する
コメント本文
投稿者
魔界の仮面弁士
 (社会人)
投稿日時
2009/7/2 10:44:40
BindingSource を使っているのですね。であれば、
DirectCast(DataGridView1.DataSource, DataSet1).DataTable1
の部分を、
DirectCast(DirectCast(DataGridView1.DataSource, BindingSource).DataSource, DataSet1).DataTable1
とするとどうでしょうか。
(リレーションを貼ってある場合などでは、BindingSource.DataSource を
さらに別の BindingSource に割り当てている可能性もありますが…)
あるいは、こうかな。
Dim dr As DataSet1.DataTable1Row = DirectCast(DirectCast(DataGridView1.Rows(行番号).DataBoundItem, DataRowView).Row, DataSet1.DataTable1Row)
# 開発環境の無いところから投稿しているので、検証していません。
# 間違っていたらごめんなさい。