Experts,
Please share some light on this simple thing... I am so preplexed.
Bascially, I am trying to copy Product Name from an open form and
paste it to the Product Name field in Form2.
Dim ProdNm As String
ProdNm = Me.[ProductName]
DoCmd.OpenForm "Form2", , , , acFormAdd
Me![PurchaseOrdersSubform].Form![ProductName] = ProdNm
What did I code wrong? Why is this not working?
Thanks in advance.
Perry