I have a vb.net form that has a combo box field on it. The combo box has one value that if selected then a value is put in another form field and a refresh is done.
The form does not get refresh auotomatically. What is wrong?
Code:
If cbo_BadgeColor.Text = "No Badge Required" Then
txt_BadgeNumber.Text = "No Badge Given"
Me.Refresh()
End If
Comment