Im using an SQL 'INSERT INTO' command to add a record to a table. The form responsible for this is bound to this table.
The problem is that the form doesnt 'recognise' the new record until I do 'Form.Recordset.Requery'
Straight after the requery Im trying to move to the new record via a Combobox:
MyRS.MoveLast
Me![ComboBuilding] = MyRS.Fields("Building").Value
This however moves me to the 2nd last record, and Im guessing this is because the recordset takes so long to requery (the total number of records indicator in the navigation buttons takes a litte while before it updates to accmodate for the new record).
Any ideas?
Thanks
The problem is that the form doesnt 'recognise' the new record until I do 'Form.Recordset.Requery'
Straight after the requery Im trying to move to the new record via a Combobox:
MyRS.MoveLast
Me![ComboBuilding] = MyRS.Fields("Building").Value
This however moves me to the 2nd last record, and Im guessing this is because the recordset takes so long to requery (the total number of records indicator in the navigation buttons takes a litte while before it updates to accmodate for the new record).
Any ideas?
Thanks