The syntax Recordset!Field specifies a field in your recordset. In your
example, you are specifying a field named "Combo.text". Instead of that,
you need use the field that is bound to the combobox. For example, if the
combo is bound to the NAME field, you need to use:
Recordset!NAME
--
*************************************************************
*************************************************************
Quote:
> I need some help:
> I have a recordset with fields selected from a pulldown menu, and now i
want
> to acces my data like this:
> Recordset!Combo.text
> But it won't work!
> Please tell me how to do it
> RObert