i have a problem.. please help me..I have only one combo box and i want my combo box to have its value and i want to get it's value from my database??? how can i get that?? please help me to do this. thanks. here is my code please help me to fix this.
con.Open()
cmd.CommandText = "Select Description from Type where Description = Description "
cmd.Connection = con
Dim reader As SqlDataReader = cmd.ExecuteReader
While reader.Read
ComboBox1.SelectedItem = reader("Description")
End While