This question is locked. New answers and comments are not allowed.
Dear All,
I have 2 Radcombox
Radcombox1 will bind data in Form_Load event And Radcombox2 will bind when user selected item at Radcombox1
This is my code in Form_Load
My problem is when add DataSource to Radcombox1 (Radcombox1.DataSource = dataTable)
the Radcombox1_SelectedIndexChanged event is fire and it's also binding Radcombox2.
Please suggest how to make it Binding Radcombox2, only when user selected Item at Radcombox1.
Thanks and best regards
*question re-post from TrialUser
I have 2 Radcombox
Radcombox1 will bind data in Form_Load event And Radcombox2 will bind when user selected item at Radcombox1
This is my code in Form_Load
Radcombox1.NullText = "- Select Name -"
Radcombox1.DisplayMember = "Name"
Radcombox1.ValueMember = "ID"
Radcombox1.DataSource = dataTable
Radcombox1.SelectedItem = vbNullString
My problem is when add DataSource to Radcombox1 (Radcombox1.DataSource = dataTable)
the Radcombox1_SelectedIndexChanged event is fire and it's also binding Radcombox2.
Please suggest how to make it Binding Radcombox2, only when user selected Item at Radcombox1.
Thanks and best regards
*question re-post from TrialUser