Save record with form still open

B

Bonnie

Hi,

Can anyone tell me why, even if I explicitely save (CTRL-
S) a record while in a form, when I look at the table, it
doesn't show the record until I move off the page or
close the form?

I am trying to open a second form from the first,
filtering on the autonumber of the first form. Do I have
to close the first form before opening the popup? I'm
getting one of those programming stiff necks on this one!

Thanks.
 
F

fgutkind

Hi,

Can anyone tell me why, even if I explicitely save (CTRL-
S) a record while in a form, when I look at the table, it
doesn't show the record until I move off the page or
close the form?

I am trying to open a second form from the first,
filtering on the autonumber of the first form. Do I have
to close the first form before opening the popup? I'm
getting one of those programming stiff necks on this one!

Thanks.
Records are not saved until you close the form, go to another record,
click the record selector bar, or explicitly save it.

If you are opening the second form from a command button on the first
form:
DoCmd.RunCommand acCmdSaveRecord
DoCmd.OpenForm "FormName" etc.
 

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

Top