microsoft access 2000 forms

  • Thread starter Thread starter Guest
  • Start date Start date
is there a way I can reassociate a form (structure only) from one table to a new table?


You can (re)set the form's RecordSource property.

Me.RecordSource = "table2"
 
Back
Top