microsoft access 2000 forms

K

Kevin Grieder

is there a way I can reassociate a form (structure only) from one table to a new table?
 
M

Marshall Barton

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"
 
Top