Click to See Complete Forum and Search --> : Go to last record
IwanVerrips
Feb 14th, 2006, 10:28 AM
Hello,
When I open a form in Microsoft Access I want the form to go to a new record that can be filled in. How do I do that?
Greetings.
Hack
Feb 14th, 2006, 10:46 AM
Is this an Access form or a VB form?
the182guy
Feb 14th, 2006, 10:47 AM
Hello,
When I open a form in Microsoft Access I want the form to go to a new record that can be filled in. How do I do that?
Greetings.
This would get more replies in the microsoft forum.
I'm guessing you have the 'columner' view of the form, I dont know how to do it for the columner view but if you create a new form and use the tabular style then the new record will always be at the bottom of the form.
Chris
IwanVerrips
Feb 14th, 2006, 10:50 AM
Is this an Access form or a VB form?
It is an form in Access, but I'm going to edit the VB code.
Private Sub Form_Open(Cancel As Integer)
End Sub
What must come between these?
the182guy
Feb 14th, 2006, 10:55 AM
This is a question about VBA(Visual Basic for Application) so hopefully a mod will move it to the VBA section where the VBA experts will read it.
Chris
Hack
Feb 14th, 2006, 11:01 AM
It is an form in Access, but I'm going to edit the VB code.Actually, you will be using VBA.
Access VBA question moved to Office Development
DKenny
Feb 14th, 2006, 11:15 AM
If you change the DataEntry Property of the form to TRUE, the form will automatically open with a blank record.
noycwild
Feb 14th, 2006, 03:43 PM
Private Sub Form_Load()
DoCmd.GoToRecord , , acLast
DoCmd.GoToRecord , , acNext
End Sub
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.