Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Call code after selecting next record 1

Status
Not open for further replies.

TheunsGoosen

Technical User
Jan 17, 2007
36
GB
Access beginner
Hi,
i have a command button on my form that uses the following code to go to the next record and to call a "Check_afterupdate" procedure.

Private Sub Command220_Click()
DoCmd.GoToRecord , , acNext
Call Check125_Afterupdate
End Sub

I would like to do away with the command button and use the record selectors at the bottom of the access program...but how do i then call the "check15_afterupdate" procedure?

Thanks
Theuns
 
You can use the Current event of the form.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top