hello Genius ...!!!!!!
could not get selected item text in combobox selectedindex changed event
return value is "System.Data.DataRowView"
Datasource Code:
  1. Dim TABLE_NAME As New DataTable
  2.                         _ADOBTER.Fill(TABLE_NAME)
  3.                         ComboBox1.DataSource = TABLE_NAME
  4.                         ComboBox1.DisplayMember = "CUSTNAME"
  5.                         ComboBox1.ValueMember = "CUSTNAME"
  6.  
  7.   Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
  8.      msgbox(ComboBox1.SelectedItem.Tostring)  '"System.Data.DataRowView"
  9.  msgbox(ComboBox1.SelectedText.Tostring)  '"System.Data.DataRowView"
  10.  
  11.     End Sub

want to get the value from the combobox but i always getting ""System.Data.DataRowView"
help me please
Thanks