I just want to ask if how to insert my distinct data to my combobox?
i.e.
dim query as string query = "SELECT DISTINCT Department FROM tblEmployees" combobox1.text = ????
thanks!
dim query as string query = "SELECT DISTINCT Department FROM tblEmployees" Me.ComboBox1.RowSource = query Me.ComboBox1.Refresh
2.1m questions
2.1m answers
60 comments
57.0k users