Tab stops

J

jhillman

I have read all the present discussions on tab stops and still I have a
problem.

My form has two subforms and the there is no other controls on the
properties tabs.
I have tab stop to "YES". All the subforms have the tab order the way I want
them.

Here is what is happening.

The first time in a record the tabswork correctly. The next record the tabs
go to the last field of the subforms not the first field in the subform
 
A

Arvin Meyer [MVP]

Generally, the tab order is respected if no one uses a mouse. If toy tab to
the next record, instead of clicking on it, it should work as expected.
 
J

jhillman

Thanks for your time. I have found some other info which my help in the future.

I had a backup from 1/12/09 and it works fine. Between then and now a
compact and repair was performed. I went to the backup and loaded all the
missing data and it works fine. I did not think that would happen by that
procedure. I will not ever do that again without a backup.
 
L

Linq Adams via AccessMonster.com

When you move from RecordA to RecordB, the last field to have focus in
RecordA will be the first field to have focus in RecordB.

In order to always have the focus on a given field, when moving to a record,
you need to use this little bit of code:

Private Sub Form_Current()
FirstControlName.SetFocus
End Sub
 
J

jhillman

Well after entering 45 records the Tab Stops are not going where the were.

I am a beginer and do not even know where to put this code.

I am adding data to subforms the last field in a sub form should go to the
first field in the next subform.

It works fora while and then it goes to wheere ever.
 

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