I have a form called "client contact" with a subform called invoice.
I am using VBA to run a filter to find specific contacts. When I run the below command:
stDocName = "Client Contact"
stLinkCriteria = "[Phone]=" & "'" & Me![Text0] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
A stupid InputBox pops up ( I don't know where from) asking me to "Enter a Parameter Value for Invoices subform.invoice"
Why does this popup appear and where in the world is it coming from? I know I did not add this in.
I am using VBA to run a filter to find specific contacts. When I run the below command:
stDocName = "Client Contact"
stLinkCriteria = "[Phone]=" & "'" & Me![Text0] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
A stupid InputBox pops up ( I don't know where from) asking me to "Enter a Parameter Value for Invoices subform.invoice"
Why does this popup appear and where in the world is it coming from? I know I did not add this in.