stDocName = "frmActivity"
stLinkCriteria = "[ProjectID]=" & Me!List2
DoCmd.OpenForm stDocName, , , stLinkCriteria
The problem with this operation is that it does more than simply go to a
specific record - it also filters the recordset to display only that record.
How can I modify that code so that it selects the desired record in the
form, without filtering the recordset so that all of the records are
available in the form?
Thanks in advance,
Paul
I was having trouble getting GoToControl to work, so I used
Forms!frmActivity!ProjectID.SetFocus on that line and it runs without a
hitch.
Thanks for giving me a solution to the problem.
"roger" <ro...@discussions.microsoft.com> wrote in message
news:91B4274F-FD4C-4FCD...@microsoft.com...