A
Anthony Viscomi
I seem to be having a "brain freeze"; I have the following VBA and would
like for the frm to open to the last record:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Transactions Subform"
stLinkCriteria = "[SS]=" & "'" & Me![SS] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
The form is opened via a cmdButton on another form.
Thanks!
Anthony
like for the frm to open to the last record:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Transactions Subform"
stLinkCriteria = "[SS]=" & "'" & Me![SS] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
The form is opened via a cmdButton on another form.
Thanks!
Anthony