tagCANDY CGI VBレスキュー(花ちゃん) の Visual Basic 2010 用 掲示板(VB.NET 掲示板)
VBレスキュー(花ちゃん) の Visual Basic 2010 用 掲示板(VB.NET 掲示板)
[ツリー表示へ]  [ワード検索]  [Home]

タイトル コンボボックスの値変更によるイベント
投稿日: 2009/04/08(Wed) 19:00
投稿者タロ
いつもお世話になっております。
DataGridView1にコンボボックスを作成したのですが、コンボボックスの値が変更したらイベント処理を行うにはどうすれば宜しいでしょうか。
以下のようにDataGridView1にデータを表示させています。

Dim sqlSelect As New SqlClient.SqlCommand(sSQL, sqlConn)
Dim Adapter As New SqlClient.SqlDataAdapter(sqlSelect)

Dim Table As New DataTable()
Adapter.Fill(Table)

sqlConn.Close()
sqlConn = Nothing

'データソースを設定してDataGridViewにデータを表示
Dim BindingSource1 As New BindingSource
BindingSource1.DataSource = Table
DataGridView1.DataSource = BindingSource1

Dim column1 As New DataGridViewComboBoxColumn()
'ComboBoxのリストに表示する項目
column1.Items.Add("不要")
column1.Items.Add("必要")
column1.DataPropertyName = "要・不要"

DataGridView1.Columns.Insert(DataGridView1.Columns("要・不要").Index, column1)
DataGridView1.Columns.Remove("要・不要")
column1.Name = "要・不要"

『要・不要』のコンボボックスの値が変わったらイベント処理を行いたいです。

環境:VB2005

- 関連一覧ツリー をクリックするとツリー全体を一括表示します)

古いスレッドにレスはつけられません。