|
-
Feb 14th, 2006, 11:28 AM
#1
Thread Starter
New Member
Go to last record
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.
-
Feb 14th, 2006, 11:46 AM
#2
Re: Go to last record
Is this an Access form or a VB form?
-
Feb 14th, 2006, 11:47 AM
#3
Re: Go to last record
 Originally Posted by IwanVerrips
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
-
Feb 14th, 2006, 11:50 AM
#4
Thread Starter
New Member
Re: Go to last record
 Originally Posted by Hack
Is this an Access form or a VB form?
It is an form in Access, but I'm going to edit the VB code.
VB Code:
Private Sub Form_Open(Cancel As Integer)
End Sub
What must come between these?
-
Feb 14th, 2006, 11:55 AM
#5
Re: Go to last record
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
-
Feb 14th, 2006, 12:01 PM
#6
Re: Go to last record
 Originally Posted by IwanVerrips
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
-
Feb 14th, 2006, 12:15 PM
#7
Re: Go to last record
If you change the DataEntry Property of the form to TRUE, the form will automatically open with a blank record.
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
-
Feb 14th, 2006, 04:43 PM
#8
Member
Re: Go to last record
Private Sub Form_Load()
DoCmd.GoToRecord , , acLast
DoCmd.GoToRecord , , acNext
End Sub
Last edited by noycwild; Feb 14th, 2006 at 04:49 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|