Something really odd - when the user changes the text in a combobox [cbClient] it launches the cbClient_TextChanged event at which point I want to evaluate the NEW value in cbClient to see if it matches a certain criteria.
Problem I am having (no clue why) is that when the event is handled the value of "CbClient.text" is still the OLD value and not the new updated value.
For example - currently in cbClient.Text = "Client1", if there user deletes/backspaces the "1" then the NEW value in cbClient should be = "Client" HOWEVER when (in the event) I do cbClient.Text it still gives me the OLD value "Client1".
Is there anyway to get the NEW value? Use a different event? Different command? Thanks...
Problem I am having (no clue why) is that when the event is handled the value of "CbClient.text" is still the OLD value and not the new updated value.
For example - currently in cbClient.Text = "Client1", if there user deletes/backspaces the "1" then the NEW value in cbClient should be = "Client" HOWEVER when (in the event) I do cbClient.Text it still gives me the OLD value "Client1".
Is there anyway to get the NEW value? Use a different event? Different command? Thanks...