Private Sub frmemployedetails_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
Dim dr As OleDbDataReader
opendb()
cmd.Connection = con
cmd.CommandText = "Select DISTINCT department from employedetails"
'Execte reader function is used to hold more than one value from the table
dr = cmd.ExecuteReader()
' Fill a combo box with the datareader
Do While dr.Read = True
cbodepartment = dr.Item(0)
Loop
con.Close()
Catch ex As Exception
MsgBox(ex.Message)
End Try
btnupdate.Enabled = False
fill_grid()
cbogender.Items.Add("Male")
cbogender.Items.Add("Female")
End Sub
保存在這個是我的代碼即時通訊新進入VB.net plz幫助我 ,這樣我可以添加到項目組合框前面輸入 而窗體加載它會顯示所有的不同的項目我進入vb.net組合框項目必須在Formload
你得到任何錯誤。如果是的話,他們是什麼? –
Bro讓我告訴你,我想從我的數據庫記錄中填充組合框中的數據字段,我該怎麼做? – user3367558
你試圖直接將你的dr.Item添加到你的cbodepartment對象而不是它的items集合中。如果您在64位窗口中運行,Form Load事件中的任何錯誤都將被吞下並且不顯示。所以嘗試cboDepartment.Items.Add(dr.Item(0)) –