I have a subform that populates the same data for every day. What I would like to do is have an OnClick even fill in all the records at once. I have tried a method of pasting, but I am sure I am either doing it worng or there is a better way.
My code:
Private Sub Command65_Click()
Me.StoreID.SetFocus
DoCmd.RunCommand acCmdPasteSpecial, "349"
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdPasteSpecial, "352"
DoCmd.RunCommand acCmdRecordsGoToNew
End Sub
I figured set focus on the first one fill in the storeid then go to next record, fill in the next storeid, etc. This does not work right.
My code:
Private Sub Command65_Click()
Me.StoreID.SetFocus
DoCmd.RunCommand acCmdPasteSpecial, "349"
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdPasteSpecial, "352"
DoCmd.RunCommand acCmdRecordsGoToNew
End Sub
I figured set focus on the first one fill in the storeid then go to next record, fill in the next storeid, etc. This does not work right.