hi
i working on a access project (adp file).
i have a form that based on a table.
when the user wants to filter the recordset he pres a button
and then i change the recordset to a view that based on the same table (filterd), the probleam that when i do that the recordset is not updatable.
here is the code
Me.RecordSource = "FF_V"
Me.Recalc
Me.ResyncCommand = "select * from batch_t"
Me.UniqueTable = "batch_t"
FF_V is a view that based on batch_t
when i run this code i get an error "the setting you entered
isn't valid for this propert" in Me.UniqueTable = "batch_t"
thank you
i working on a access project (adp file).
i have a form that based on a table.
when the user wants to filter the recordset he pres a button
and then i change the recordset to a view that based on the same table (filterd), the probleam that when i do that the recordset is not updatable.
here is the code
Me.RecordSource = "FF_V"
Me.Recalc
Me.ResyncCommand = "select * from batch_t"
Me.UniqueTable = "batch_t"
FF_V is a view that based on batch_t
when i run this code i get an error "the setting you entered
isn't valid for this propert" in Me.UniqueTable = "batch_t"
thank you