Function recFirst(NomeMaschera As String)
DoCmd.GoToRecord acDataForm, NomeMaschera, acFirst
End Function
Function recPrec(NomeMaschera As String)
DoCmd.GoToRecord acDataForm, NomeMaschera, acPrevious
End Function
Function recSucc(NomeMaschera)
DoCmd.GoToRecord acDataForm, NomeMaschera, acNext
End Function
Function recLast(NomeMaschera As String)
DoCmd.GoToRecord acDataForm, NomeMaschera, acLast
End Function