Open Form Question

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

If you have a bound form that is open and you open it again from itself
without closing the form first to get to a new record that is created.
What happens? Is the form open twice? Does anything weird happen? I
know its a strange question.
Thanks
DS
 
DS said:
If you have a bound form that is open and you open it again from itself
without closing the form first to get to a new record that is created.
What happens? Is the form open twice? Does anything weird happen? I
know its a strange question.

It won't open again. The real question is why do you need to do this just to
get to a new record? You could just use:

DoCmd.GoToRecord acDataForm, Me.Name, acNewRec

Barry
 
Barry said:
:




It won't open again. The real question is why do you need to do this just to
get to a new record? You could just use:

DoCmd.GoToRecord acDataForm, Me.Name, acNewRec

Barry
Sounds good so far...So it just stays open and goes to the specific
record. I have a number of UnBound fields that I want to retain their
values and I can't use default
because record to record they change. I'm just worried that by doing
this something will come back to bite me!
Thanks
DS
 
Back
Top