Can I change an unbound textbox into a bound textbox?

  • Thread starter Thread starter yma
  • Start date Start date
Y

yma

Hi All,

I created a form without selecting a table. My textboxes are unbound. Can
I change the unbound textboxes into bound textboxes by bounding them to a
table? If it can be done, please tell me how.

Thank you!

Steve
 
Yes,

First set the Recordsource of the form:
Me.RecordSource = "Nameofyourtable"
Then set the Control Source of the Textbox:
Me!Textboxname.ControlSource = "Nameoffield"

Dave
 
Back
Top