Combo Box Values

MadMaxx

.NET foo
Local time
Today, 03:02
Joined
Jun 27, 2003
Messages
138
Hey all,

Got a little problem. I have a combo box which has a list of values from a table. When a user selects a value it gets added to a text box. Now the problem I am having is when the user first opens the form and selects a value it doesn't get added to the text box. But if they select it again it then gets added. Anyone know why it is doing this?

The code is in the OnChange Event for the combo box. I also tried the OnClick event and it does the same thing.

Thanks
 
Thanks Rich but I got it working with the OnChange event.
 
The On Change event will fire with every letter that's typed in to the combo, you might want to change it to the after update event
 
That's why I used the OnChange event. I want it to keep adding to the text box.
 

Users who are viewing this thread

Back
Top Bottom