keep text in combo after recording it in a table?

S

spirit

I have a combo box in which I have a list coming from a table and it is
recording to a field in another table. I need to have the text selected to
keep recording the same until I decide to change to any other text in the
combo? how can I do that??
 
S

Sprinks

Spirit,

Use the combo box' AfterUpdate event to change the DefaultValue property:

Me!YourComboBox.DefaultValue = Me!YourComboBox

Hope that helps.

Sprinks
 
Top