(moved)
Printable View
(moved)
See here : http://www.vbforums.com/showthread.p...hreadid=244549Quote:
Originally posted by Bluei2
And my second question is, how can I go to Next or Previous record?
Instead of
VB Code:
'to combo Dim a As Integer For a = 1 To dv.Count ComboBox1.Items.Add(dv.Item(0)) Next
You should have
VB Code:
'to combo ComboBox1.DataSource = dv ComboBox1.DisplayMember = "students"