|
分類:[VB.NET]
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
View2.EditMode = DataGridViewEditMode.EditOnEnter End Sub
Private Sub dataGridView1_EditingControlShowing(ByVal sender As Object, _ ByVal e As DataGridViewEditingControlShowingEventArgs) _ Handles View2.EditingControlShowing
Dim comboBox1 As ComboBox = CType(e.Control, ComboBox) comboBox1.DropDownStyle = ComboBoxStyle.DropDown
End Sub
いろいろと調べてみて
この二つのプロシージャで なんとか 入力まではできるようになったのですが フォーカスが他のところへ行くと消えてしまいます 入力した値を取り出して ComboBoxのItemに追加できればよいのかな?と思うのですが 入力した値を取り出せません(取り出す前に消えてしまう) どうすれば よいのでしょうか?
|