Prev: Form will not allow checkbox option group or toggle
Next: Displaying Yes/No as Yes or No instead of -1 and 0
From: K on 25 May 2010 10:41 Hi all, I have Subform "SubA" on another Subform "SubB". And "SubB" is on Form called "Main". On "SubB" I have button called "Add New Record" and I got macro (see below) on this button's click event. Private Sub Command1_Click() Me.SubA.SetFocus DoCmd.GoToRecord , , acNewRec End Sub When I open Form "SubB" and click button, macro works but when I open Form "Main" and click button which is showing in "SubB" subform, macro dont work. I tried below macro but I dont work Private Sub Command1_Click() Forms![Main]![SubA]![SubB].SetFocus DoCmd.GoToRecord , , acNewRec End Sub Please can any friend help |