Ask a Question related to Microsoft Access, Design and Development.
-
Diane #1
Entering new record on form
How do I make the form go to a new record as I open it so
it is ready to fill in.
Diane Guest
-
Entering dates in dynamic form - how to get results?
This is driving me batty - it should be easy! Confusing to explain, but I have a small database (Access) table with Employee and a FinishDate (date... -
Change form record to match another form
I had a form with a lot of controls/subforms and this was causing my database to move slow. I decided to split the controls on two forms. Each... -
look up record using ste values from one form on another form
it did not work here is the code i am using with the code you sent the command below operates off of a command button to find the record i want i... -
Entering multiple records with one form
Hello, I am trying to setup a single form that will enter several records into a table at once. Does anyone have a hint as to how this might be... -
Entering data on a form?
On Mon, 30 Jun 2003 12:29:02 -0700, "grace" <grace.paltrineri@libertymutual.com> wrote: As much as I hate Smartquotes (what newsreader are you... -
Debra Farnham #2
Re: Entering new record on form
Hi Diane
On the On Open event of the form insert the following:
DoCmd.GoToRecord , , acNewRec
Assuming you're using Access 2000
HTH
Debra
"Diane" <illumin8_98@hotmail.com> wrote in message
news:025501c3470a$33e77e00$a301280a@phx.gbl...> How do I make the form go to a new record as I open it so
> it is ready to fill in.
Debra Farnham Guest
-
John Vinson #3
Re: Entering new record on form
On Thu, 10 Jul 2003 10:39:24 -0700, "Diane" <illumin8_98@hotmail.com>
wrote:
Two possibilities:>How do I make the form go to a new record as I open it so
>it is ready to fill in.
- If you JUST want to enter data, and don't want to even see old
records, set the DataEntry property of the Form to True.
- If you want to default to entering new records, but still want the
ability to scroll back and see old ones, put the following VBA code in
the Form's Open event (by viewing the form's properties, finding the
Open event on the Events tab, clicking the ... icon and choosing Code
Builder):
Private Sub Form_Open(Cancel as Integer)
DoCmd.GoToRecord acNewRecord
End Sub
John W. Vinson[MVP]
Come for live chats every Tuesday and Thursday
[url]http://go.compuserve.com/msdevapps?loc=us&access=public[/url]
John Vinson Guest



Reply With Quote

