P
Peter
When i want to open a report in a form (with VBA) i only
need to dimension 1 string variable
When i want to open a form instead of a report i need to
dimension 2 stringvariable (see down here)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "University"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I do not understand what the second string variable
(stLinkCriteria) does or stand for.
Thanks
need to dimension 1 string variable
When i want to open a form instead of a report i need to
dimension 2 stringvariable (see down here)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "University"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I do not understand what the second string variable
(stLinkCriteria) does or stand for.
Thanks