R
Robert_DubYa
I have two subforms on one page. When I double click on an object from the
first subform I want it to move to the second subform. I can get it to work
fine with exception of refreshing the view of the second subform.
here is my current code:
Private Sub OrderNumb_DblClick(Cancel As Integer)
DoCmd.OpenReport "qryPartsListForReport"
Part_List_Printed = True 'this is checkbox in the subforms
DoCmd.Requery
frmPickPartssubformInprocess.Requery
End Sub
The last line of code does not work. Any help will be apperciated.
thanks,
Robert
first subform I want it to move to the second subform. I can get it to work
fine with exception of refreshing the view of the second subform.
here is my current code:
Private Sub OrderNumb_DblClick(Cancel As Integer)
DoCmd.OpenReport "qryPartsListForReport"
Part_List_Printed = True 'this is checkbox in the subforms
DoCmd.Requery
frmPickPartssubformInprocess.Requery
End Sub
The last line of code does not work. Any help will be apperciated.
thanks,
Robert