B Brigham Siton Jul 16, 2003 #1 How do I setfocus on a control in a subform from the main form? Thank you.
B Brigham Siton Jul 16, 2003 #2 Great. Thank you very much. Brigham chas said: Hi Brigham, I think you need to use the full path to the control on the subform. Something like: Forms![Orders]![Orders Subform].Form![UnitPrice].SetFocus hth chas -----Original Message----- How do I setfocus on a control in a subform from the main form? Thank you. . Click to expand... Click to expand...
Great. Thank you very much. Brigham chas said: Hi Brigham, I think you need to use the full path to the control on the subform. Something like: Forms![Orders]![Orders Subform].Form![UnitPrice].SetFocus hth chas -----Original Message----- How do I setfocus on a control in a subform from the main form? Thank you. . Click to expand... Click to expand...
K Ken Snell Jul 16, 2003 #3 First set focus on the subform control (the control on the main form that holds the subform). Then set focus on the control in the subform. You need to do this in two steps. Me.subform.SetFocus Me.subform!control.SetFocus
First set focus on the subform control (the control on the main form that holds the subform). Then set focus on the control in the subform. You need to do this in two steps. Me.subform.SetFocus Me.subform!control.SetFocus