Hello wambaugh1,
if combobx value selected than you go to another page or continues to current page?
If go to another page, then send value which is you selected in combobox.
If continues of that page than in selection change event of combobox get value of combobox selecteditem,
Private Sub ComboBox1_SelectionChanged(sender As Object, e As SelectionChangedEventArgs)
'Title-1 selected
If ComboBox1.SelectedItem.ToString() = "Title-1" Then
'Title-2 selected
ElseIf ComboBox1.SelectedItem.ToString() = "Title-2" Then
End If
End Sub
No comments:
Post a Comment