go to last record when open form in access

A

Allen Browne

In the Load event procedure of the form:

If Not Me.NewRecord Then
RunCommand acCmdRecordsGoToLast
End If
 
Top