Populate table through VB on a click event

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to populate a field in my table using a click event. How do I reference my table through VB?? Is it Table!Field or something like that. Thanks in advance. Brad
 
Brad said:
I want to populate a field in my table using a click event. How do I
reference my table through VB?? Is it Table!Field or something like that.
Thanks in advance. Brad

If it is the table or query bound to the form it is Me!Field or
Forms!YourFormName!Field
If not you must either open the table or use INSERT INTO in a query.
 
Back
Top