oh...
We need to back up a little. To start with, lets get away from the combo box and consider a simple text box on a form where you enter data. Say you have a form name 'Customers' and on this form you have a text box named 'customerName'.
In code, you would refer to the data in the text box by using:
forms!Customers!customerName
A short cut is:
me!customerName
But if you use this shortcut, the code must be in the same form that the text box is in. Say if I had another form that was open named 'Vendors', in that forms code, if I wanted to refer back to the text box back in the customers form, I could not use me!customerName. You'd have to use forms!Customers!customerName.
Make sense????