G
Guest
I have this:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ConfirmSSN"
stLinkCriteria = "[SSN]=" & "'" & Me![SSN] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
To open a new form and display the SSN on that page
When I do this SSN and stLinkCriteria are coming up with information in the
debugger but when the page opens it is not displaying the SSN.
I don't know what the problem is.
It is a decision and I just copied it from the other statement and changed
the form to be opened, but it does not show the SSN.
Any ideas
When I create a button to test it to see if it work the button one works but
if I just copy the text that doesn't work?
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ConfirmSSN"
stLinkCriteria = "[SSN]=" & "'" & Me![SSN] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
To open a new form and display the SSN on that page
When I do this SSN and stLinkCriteria are coming up with information in the
debugger but when the page opens it is not displaying the SSN.
I don't know what the problem is.
It is a decision and I just copied it from the other statement and changed
the form to be opened, but it does not show the SSN.
Any ideas
When I create a button to test it to see if it work the button one works but
if I just copy the text that doesn't work?