HELP: How to pass linkcriteria to a continuous form?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have it passing one line item from my multi-select capable listbox, but I
do not know how to code the linkcriteria to pass multiple selected lines to
the continuous form. I really need to be able to pass multiple lines. I
really hope someone can help b/c this is precisely what the requestor of the
database needs.

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmBiller-AddMissingChargeRequestUsingOracle#"

stLinkCriteria = "[OrderTextFileUniqueID]=" & Me![lstOracleLinesForROEs]
DoCmd.OpenForm stDocName, , , stLinkCriteria
 
Back
Top