"Matuag" <matuag@gmail.comwrote in message
news:1180618282.436420.168000@z28g2000prd.googlegr oups.com...
Quote:
Quote:
>Make sure that if you're using transactions, you close that transaction
>before the requery.
| >
Can you please explain what do you mean by transactions?
>
|
from the MS Access Help page:
TRANSACTION Statement
Used to initiate and conclude explicit transactions .
Syntax
Initiate a new transaction.
BEGIN TRANSACTION
Conclude a transaction by committing all work performed during the
transaction.
COMMIT [TRANSACTION | WORK]
Conclude a transaction by rolling back all work performed during the
transaction.
ROLLBACK [TRANSACTION | WORK]
Remarks
Transactions are not started automatically. To start a transaction,
you must do so explicitly using BEGIN TRANSACTION.
Transactions can be nested up to five levels deep. To start a nested
transaction, use BEGIN TRANSACTION within the context of an existing
transaction.
Transactions are not supported for linked tables.
if you don't recognize this, then it's probably not your problem.
transactions are used to insure that multiple table updates complete
normally--or are rolled back completely, so that partial updates do not
occur due to system halts, etc.
sorry if i've confused the issue with this.
Dale.