Desending Table question

B

Bob

If my table is in descending, showing last record at the top, why when I
view them through forms it shows the first record and not the last?
Thanks Bob







..........Jenny Vance
 
B

Bob

Ok think I got it,
Private Sub Command350_Click()
On Error GoTo Err_Command350_Click

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmHorseInfo"
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.GoToRecord , , acLast
Exit_Command350_Click:
Exit Sub

Err_Command350_Click:
MsgBox Err.Description
Resume Exit_Command350_Click

End Sub
Thanks anyway Bob
 
Top