King Kreglo
Registered User.
- Local time
- Today, 06:31
- Joined
- Aug 31, 2013
- Messages
- 32
I have a main form with a few buttons to select which opens another window where the user orders products from. The main form remains open.
When the order is finished they click submit and the data is appended to a subform on the main table. I can't quite figure out how to get my subform to update.
Here is the code I tryed to use:
Any help would be appreciated, thanks!
When the order is finished they click submit and the data is appended to a subform on the main table. I can't quite figure out how to get my subform to update.
Here is the code I tryed to use:
Code:
Private Sub Command7_Click()
DoCmd.SetWarnings 0
DoCmd.(runs several queries)
DoCmd.Close
DoCmd.OpenForm "frmBegin Order"
Me![Order Central - Access].[frmBegin Order].Requery
End Sub
Any help would be appreciated, thanks!