D
DarenZ
With a form open, I want to double click on a field to open another form and
modify the contents of that record. Currently I have the following
Private Sub Stock_Number_DblClick(Cancel As Integer)
DoCmd.OpenForm ("Magnify")
Form_Current (Form.Name)
and
Private Sub Form_Current()
Stock_Number.SetFocus
What I want is the second form to open with the focus on the record I double
clicked on. What am I missing?
modify the contents of that record. Currently I have the following
Private Sub Stock_Number_DblClick(Cancel As Integer)
DoCmd.OpenForm ("Magnify")
Form_Current (Form.Name)
and
Private Sub Form_Current()
Stock_Number.SetFocus
What I want is the second form to open with the focus on the record I double
clicked on. What am I missing?