タイトル | : Re^8: DataGridViewの選択した行を取得して修正したいのですが。 |
記事No | : 6172 |
投稿日 | : 2007/08/27(Mon) 16:14 |
投稿者 | : kokoro |
> > > > > > For i = 0 To - 1 > > > > 魔界の仮面弁士さんもご指摘されてるように、これでは何も改善されていません。 > > > > とりあえず下記リンク先を読んでください。 > > > > http://vbnet-iku2.hp.infoseek.co.jp/lecture07.htm > > > 読んで考えてみます。色々ありがとうございます。 > > > > いやいや(汗) > > 何も解決してないですから > > > > > > for i as integer =0 to GridView.SelectedCells.Count-1 > > > > GridView.SelectedCells.Item(0).Item(i)="変更データ" > > > > next > > > > > デバッグしてませんが・・・これでうまくいかないですか? > > ありがとうございます。時間経過して申し訳ありません。 > 早速試してご報告します。
If DataGridView1.CurrentRow.Selected = False Then Answer = MsgBox("行を選択してください", MsgBoxStyle.OkOnly) If Answer = MsgBoxResult.Ok Then Exit Sub
End If Else Code = CStr(DataGridView1.Item(0, CInt(DataGridView1.CurrentRow.Index.ToString())).Value) 修正したい行を選択して、次のForm4のテキストボックスにデータを表示させたいのです。 TextBox1.TextにはID番号(002を選択したとします。) TextBox2.Textには姓(山田を選択したとします。) と登録しています。
For i As Integer = 0 To DataGridView1.SelectedCells.Count - 1
Next
DataGridView1.SelectedCells.Item(0).Item(0) = "変更データ" DataGridView1.SelectedCells.Item(1) = "" next
End If Me.Close() Form4.Show()
|