Desending Table question

  • Thread starter Thread starter Bob
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Open Last form 2
Combo Box Query! 5
Sort on a Query 7
Form Missing Bottom Scrollbar? 2
Print a form? 2
Access wont sort Correctly! 13
Sort Order In a Query 12
Blank Combo Box when form opens 9

Back
Top