jharding08
Member
- Local time
- Yesterday, 16:11
- Joined
- Feb 16, 2021
- Messages
- 55
I have a main form that has 5 subforms with text controls and in those subforms , there are subforms with text boxes.
The main form has 8 text boxes that have tab order 0-7, then the first subfrm1 has two text boxes then a subform(1.1) with three textboxes
I need to go from:
MainForm.textbox7 THEN
The main form has 8 text boxes that have tab order 0-7, then the first subfrm1 has two text boxes then a subform(1.1) with three textboxes
I need to go from:
MainForm.textbox7 THEN
Subfrm1.textbox0 -> subfrm1.textbox1 THEN
Subfrm(1.1).textbox0-> Subfrm(1.1).textbox1 -> Subfrm(1.1).textbox2 THEN
Subfrm (1.2).textbox0-> Subfrm(1.2).textbox1 -> Subfrm(1.2).textbox2 THEN
Subfrm1.textbox2 -> subfrm1.textbox3->subfrm1.textbox4->subfrm1.textbox5 THEN
Subfrm2.textbox0->Subfrm2.textbox1 -> subfrm2.textbox2 THEN
Subfrm3.textbox0 -> subfrm3.textbox1 THEN
Subfrm(3.1).textbox0-> Subfrm(3.1).textbox1 -> Subfrm(3.1).textbox2 ...ETC...
Do I need to use LostFocus event in last tab stop control to assign focus to next control?