P
Paul B.
Hello all...
I have a edit record form, which was working, until I added record
navigation buttons to the form (memberinfo) that has the edit record button
that opens it.
I'm not sure where the problem is, but the eidt record form no longer
populates the information. The filter shows the correct info, but the text
boxes are all blank.
Here is the code for the edit record button on the memberinfo form.
--------------------------
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "EditMemberInfo"
stLinkCriteria = "[MembershipNumber]=" & Me![MembershipNumber]
DoCmd.OpenForm stDocName, , , stLinkCriteria
------------------------
I have a edit record form, which was working, until I added record
navigation buttons to the form (memberinfo) that has the edit record button
that opens it.
I'm not sure where the problem is, but the eidt record form no longer
populates the information. The filter shows the correct info, but the text
boxes are all blank.
Here is the code for the edit record button on the memberinfo form.
--------------------------
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "EditMemberInfo"
stLinkCriteria = "[MembershipNumber]=" & Me![MembershipNumber]
DoCmd.OpenForm stDocName, , , stLinkCriteria
------------------------