mtagliaferri
Registered User.
- Local time
- Today, 04:50
- Joined
- Jul 16, 2006
- Messages
- 550
I have a continuous form and have the following code
to show the last records on the Open Form Event, this works fine but it will only display the last record (obviously) on the entire screen which looks a bit odd, how can I change it to something in the lines go to the last 10 or 15 records so that the screen is filled up with more than just 1 record?
Thanks
Code:
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acLast
End Sub
Thanks