I
iretonshorse
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmLparRL"
stLinkCriteria = "[Nodeid] = [frmLparRL].[Nodeid]"
DoCmd.OpenForm stDocName, , , stLinkCriteria
when I use this piece of code I am hoping that the form will open on
the same record in the next table.
instead of this an alert box comes up Enter Parameter value
FormLparRl.Nodeid
How can I get it to pick up this parameter value automatically?
Dim stLinkCriteria As String
stDocName = "frmLparRL"
stLinkCriteria = "[Nodeid] = [frmLparRL].[Nodeid]"
DoCmd.OpenForm stDocName, , , stLinkCriteria
when I use this piece of code I am hoping that the form will open on
the same record in the next table.
instead of this an alert box comes up Enter Parameter value
FormLparRl.Nodeid
How can I get it to pick up this parameter value automatically?