Hi Graham
Thanks for the response. The rationale for interacting with the user while
within the transaction is to enable the user to check the appended records
before committing them. So I need an object to place on the form to present
the recordset of pending records, without having to design a specific form.
The easiest would bethe ability to programmatically transfer the contents of
the recordset to the UI object (eg ListBox) on the form.
Any suggestions? DBListBox?? FlexGrid?? Subform?? Save RS as table then
point Listbox to it (messy)???
Thanks
David
> David,
>
[quoted text clipped - 25 lines]
> > appropriate to display the records on a Form? How would this be
> > implemented?
Graham R Seach - 15 Mar 2005 15:10 GMT
David,
No, nothing outside the transaction can see the changes, because they only
exist in a hidden (and secured) temp file; they don't actually exist in the
database until they are committed.
My only suggestion would be to chuck the proposed changes into a temp table,
and show *that* to the user. If the user opts to "commit" the changes, run
extra code (within a tranaction) to make the changes to the "real" table.
Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
Microsoft Access 2003 VBA Programmer's Reference
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764559036.html
> Hi Graham
>
[quoted text clipped - 51 lines]
>> > appropriate to display the records on a Form? How would this be
>> > implemented?
David C. Holley - 15 Mar 2005 18:24 GMT
Why not move the approval to before the process begins by providing the
user with a checkbox or something that flags record as OK to append and
then run a query selecting the records with the flags set to TRUE?
David H
> Hi Graham
>
[quoted text clipped - 43 lines]
>>>appropriate to display the records on a Form? How would this be
>>>implemented?