i have 3 combo boxes on a form in vb.net. the 3rd combo needs the selection from both of the previous. How do i check that both cb1 and 2 have items selected?
there is no order of selection the user can change 1 or 2 in either order as long as i can make cb3 respond
Visual Basic.NET
Last Comment
Fernando Soto
8/22/2022 - Mon
PeterBaileyUk
ASKER
I just wrote this
If (String.IsNullOrEmpty(CBNote.SelectedItem)) And (String.IsNullOrEmpty(CBScaleType.SelectedItem)) Then
Call GetCBData("usp_GetChords")
End If
not sure if its correct way
PeterBaileyUk
ASKER
apart from the blinding obvious that i need an else and need to move the call to the correct part
If (String.IsNullOrEmpty(CBNo
Call GetCBData("usp_GetChords")
End If
not sure if its correct way