Subform skipped after first record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form(1) which has a subform(2) and the subform has a subform(3).

What property do I need to change for subform(2) to allow entry into subform(2) after the first record is entered?

On the second record entry it fills all fields on form(1), skips the subform(2) and goes directly to fields on subform(3)
 
I have a form(1) which has a subform(2) and the subform has a subform(3).

What property do I need to change for subform(2) to allow entry into subform(2) after the first record is entered?

On the second record entry it fills all fields on form(1), skips the subform(2) and goes directly to fields on subform(3).

You need to set the Tab Order of the controls on Form1 and on Subform2
appropriately; it appears that the Subform control containing Form3 is
first in the tab order of Subform2. Set the tab order so that it's
last.
 
John

The problem is that it works the first time through which tells me the tab order is correct. When I start a new record after having done one and get down to the last field on Form1 it then skips subform2 and goes directly to subfrom3.

----- John Vinson wrote: ----

On Wed, 14 Apr 2004 06:41:04 -0700, "bdehning
I have a form(1) which has a subform(2) and the subform has a subform(3).

You need to set the Tab Order of the controls on Form1 and on Subform
appropriately; it appears that the Subform control containing Form3 i
first in the tab order of Subform2. Set the tab order so that it'
last


John W. Vinson[MVP]
Come for live chats every Tuesday and Thursday
http://go.compuserve.com/msdevapps?loc=us&access=publi
 
Back
Top