V
vegathena
I have inherited several mdb and adp front ends that work with a SQL
Server backend.
I need to get a form from an mdb to work in an adp.
The properties for the MDB form are as follows:
record source: table
data entry: no
recordset type: Dynaset
The properties for the ADP form are as follows:
record source: table
data entry: no
recordset type: updatable snapshot
So while the mdb has a dynaset recordset type, the adp has an
updatable snapshot recordset type.
The problem is that unlike the mdb form where a record is inserted/
updated whenever cmdSave is clicked (DoCmd.DoMenuItem acFormBar,
acRecordsMenu, acSaveRecord, , acMenuVer70),
the adp form updatable snapshot recordset type is inserting or
upddating a record whenever I change a field that's tied to the table.
I have tried both types of recordset type for the adp form:
snapshot doesn't allow changes
updatable snapshot changes/inserts record every time I modify any
field tied to the table
How can i get this adp form to save or update only when I tell it to
rather than every time something
is modified?
Thanks for your help.
Server backend.
I need to get a form from an mdb to work in an adp.
The properties for the MDB form are as follows:
record source: table
data entry: no
recordset type: Dynaset
The properties for the ADP form are as follows:
record source: table
data entry: no
recordset type: updatable snapshot
So while the mdb has a dynaset recordset type, the adp has an
updatable snapshot recordset type.
The problem is that unlike the mdb form where a record is inserted/
updated whenever cmdSave is clicked (DoCmd.DoMenuItem acFormBar,
acRecordsMenu, acSaveRecord, , acMenuVer70),
the adp form updatable snapshot recordset type is inserting or
upddating a record whenever I change a field that's tied to the table.
I have tried both types of recordset type for the adp form:
snapshot doesn't allow changes
updatable snapshot changes/inserts record every time I modify any
field tied to the table
How can i get this adp form to save or update only when I tell it to
rather than every time something
is modified?
Thanks for your help.