I am wanting to have a button on a home menu which links to another form and automatically goes to a blank record...I have looked through macros and I cant seem to find an answer there.
Ok, from the main access window, go to the modules section, click on 'New'.
After that you should be presented with a note pad look-a-like, enter this into it;
Code:
Option Compare Database
Public Sub OpenAndNew()
Form_Day.Visible = True
DoCmd.GoToRecord acDataForm, Form_Day.Name, acNewRec
End Sub
After that save the module and go back to the main database window.
Go to your 'Home Page' form and create a button, cancel the wizard that pops up.
Right click the button and choose 'Build Event', choose 'code builder' from the list, inside you should be at the note pad look-a-like again, simply write down,
Code:
OpenAndNew
Save changes, go back to your main form and go into form view, clicking the button should now open up the 'Day' form and go to a new record.
Edit: Haven't actually tested this yet it's all guess work so just say if it goes wrong. Also the module code may need to contain the form name as it's not runningh on the form.