Moves to new record

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I have a child subform with three fields and a "Next" button. If I
populate these fields then tab out of the subform, the fields go blank
as though moving to a new record for input. However, I would like these
fields to remain showing unless I press the "Next" command button. What
can I do? Any help is appreciated.

Thanks all,

Dave B
 
This is aircode, but I'd try opening the from used as the subform in Design
View, goto Properties and set AllowAdditions to NO. Next goto the Onclick sub
for your "Next" button and put Me.AllowAdditions = Yes before your code to go
to a new record. Then in the appropriate place set Me.AllowAdditions = No
again.
 
I have a child subform with three fields and a "Next" button. If I
populate these fields then tab out of the subform, the fields go blank
as though moving to a new record for input. However, I would like these
fields to remain showing unless I press the "Next" command button. What
can I do? Any help is appreciated.

Thanks all,

Dave B

If you open the form you're using as a subform and set its Cycle
property to "same record", you'll just tab back to the first control.

John W. Vinson[MVP]
 

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