salamander
Registered User.
- Local time
- Today, 04:05
- Joined
- Mar 3, 2008
- Messages
- 18
Hi there,
There is a list of records I have (based ona query). User double clicks a list item to go to that record on another form.
Code invoked is:
This works fine. However, the resulting form is filtered. I do not want it to be filtered, I just want it to jump to that record in the form, not filter it for that record.
One idea I had is to apply Filter = "" on the new form on current, but I still want users to apply filters through the right click and not have it removed when they move to another record.
Any ideas?
Thanks
There is a list of records I have (based ona query). User double clicks a list item to go to that record on another form.
Code invoked is:
PHP:
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCritera = "[ID] = " & Forms!frmNAME!lstNAME.Column(4)
stDocName = "frmNAME"
DoCmd.OpenForm stDocName, , , stLinkCritera
This works fine. However, the resulting form is filtered. I do not want it to be filtered, I just want it to jump to that record in the form, not filter it for that record.
One idea I had is to apply Filter = "" on the new form on current, but I still want users to apply filters through the right click and not have it removed when they move to another record.
Any ideas?
Thanks