Form problem

  • Thread starter Thread starter PsyberFox
  • Start date Start date
P

PsyberFox

Hi there,

I have an input form to capture records to linked SQL tables. the one form
opens up with a blank screen on a new record, which is right. The other form
opens up with a record loaded... I've looked at every single property for the
form, but cannot see a difference between the two forms. Also, the tables
that the forms are linked to are identical in setup.

Can you help?!
 
Hi there,

I have an input form to capture records to linked SQL tables. the one form
opens up with a blank screen on a new record, which is right. The other form
opens up with a record loaded... I've looked at every single property for the
form, but cannot see a difference between the two forms. Also, the tables
that the forms are linked to are identical in setup.

Can you help?!

Check the "Data Entry" property of the two forms. If the two forms are
identical they will behave identically; all I can conclude is that you missed
something.

You can put code in the form's Load event

DoCmd.GoToRecord acDataForm, Me.Name, acNewRecord

to jump to the new record.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top