E
edisonl via AccessMonster.com
Hi,
1. I have a subform where captured all pass transations history, in addition
there is a field (checkbox) allowing user to check to reprint particular
record. all this works fine and the reprint record is inserted into
TransactionHistory_subform
2. However, when user amend certain field, Remarks Column, I like to keep
original record's Remarks as of origin (might be empty)
3. Therefore I tried to do
recordcount = TransactionHistory_subform.form.recordset.recordcount
for a =1 to recordcount
TransactionHistory_subform.setfocus
TransactionHistory_subform!Remarks.undo
TransactionHistory_subform.Form.undo
DoCmd.GoToRecord , , acNext
next a
But apprently the undo command doesn't works..
Anyone knows how to work around this ?
Regards, Edison
1. I have a subform where captured all pass transations history, in addition
there is a field (checkbox) allowing user to check to reprint particular
record. all this works fine and the reprint record is inserted into
TransactionHistory_subform
2. However, when user amend certain field, Remarks Column, I like to keep
original record's Remarks as of origin (might be empty)
3. Therefore I tried to do
recordcount = TransactionHistory_subform.form.recordset.recordcount
for a =1 to recordcount
TransactionHistory_subform.setfocus
TransactionHistory_subform!Remarks.undo
TransactionHistory_subform.Form.undo
DoCmd.GoToRecord , , acNext
next a
But apprently the undo command doesn't works..
Anyone knows how to work around this ?
Regards, Edison