When you set the value from the combo box you can copy the value to an
unbound text box (which you can hide) or copy the value to a module with a
public global variable. I'd open up a module and create a public variable
with a couple get and set methods to control the access to the variable.
If you need some examples I can write them for you. Then what you do is tap
into one of the forms' events like "on current" you'd say:
....
Me.strTextBox1 = Nz(Module1.GetMyTextString(), "")
....
Then you'd have to remember to make sure the user saved the changed record
or undo (ESC) the record if you wanted to reverse the change back out.
If you use a hidden unbound text box to save the data, then you'll have to
manipulate the bound text box in the forms' code similar to the way I
described above.
I hope this helps.
Rob.