browse between records

maxmangion

AWF VIP
Local time
Today, 15:45
Joined
Feb 26, 2003
Messages
2,805
in the attached sample from a db, i don't know why when i go to the form tblAlbums, i have to click the record selector twice to move to the next record. does anyone know why this happens ?

Moreover, if i create a command button to move to the next record, it works fine (with a single click).

Thank you!
 

Attachments

It is because of the on lost focus event that you have.

Code:
Private Sub Album_LostFocus()
Call Album_AfterUpdate
End Sub

Why do you need this bit of code.
Anything that you put into this field will run the afterupdate bit anyway.

Just delete the lost focus event and it will work fine.

Steve
 
thank you, that solved the problem!
 

Users who are viewing this thread

Back
Top Bottom