How do you bind a control when the control source is based on the selection
in a combo box? The control source is determined by the selection made.
If you're going to do this - and see below, it's likely to be a BAD
IDEA - then you would need to explicitly set the textbox's Control
Source property to the fieldname in the combo box's AfterUpdate event.
The need to do this makes me suspect that your table design needs a
look. Are you storing *data* in fieldnames, and using the combo to
select which field to display? As the combo's row source changes, will
you need to continually add fields to your table? If so, you may need
a second table instead of more fields.
John W. Vinson[MVP]