Can I change an unbound textbox into a bound textbox?

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
 
D

Dave Jones

Yes,

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

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top