to move tab form one subform to another
to move tab form one subform to another
(OP)
I have a main form and three subforms on it but when i try to move the tab from one subform to another it saves the record and again goes back to the beginning of the same subform,is there a way i can get the tab to go to the next subform.
and when i am one the thrid subform the tab to move to the main form.
and when i am one the thrid subform the tab to move to the main form.
RE: to move tab form one subform to another
If KeyCode = 9 then
Forms![MainForm]![Subform].setfocus
Endif
Alternatively, you can program a function key to sendkeys Ctrl-Tab to move between subforms.
RE: to move tab form one subform to another
if i write a procedure in the form which is a subform in another for ,will it work. through the main form.
RE: to move tab form one subform to another