Combo box question:

  • Thread starter Thread starter Bish
  • Start date Start date
B

Bish

Try the following. For the example my combobox is named
cbo_Test.

Private Sub cbo_Test_AfterUpdate()
Msgbox "You have selected " & cbo_Test.Value
End Sub
 
Thank you for your help and answer:
Your message will display every time I write playername....
I want the code check if the playername is exist the message box appear if
not don't do any message
 
Back
Top