Link fields?

S

Stephanie

Can you link fields? I posted a question earlier, but since I can't delete
it, I have another idea.

How can I make field bound dependant upon what is selected from a combo box?
 
O

Ofer

On the after update event of the combo you can write the code

If me.ComboName = "Redlines" then
me.FieldName.ControlSource = "Redline_Recvd"
else
me.FieldName.ControlSource = "Start Edit"
end if
 
Top