O
owp^3
I am using ajbFindAsYouType with a tabular table and it works great!
Thanks Allen!
I have built a table with only the fields I want to search/filter on.
I'd like to use it as "menu."
So I added a button (though a double click would work just as well) to the
body of the form such that there is a button for each record displayed. This
button calls a "data entry" form with all of the fields for a record.
The code attached to the button uses OpenForm such that
stDocName = "user_ProjectData"
stLinkCriteria = "[ID]=" & Me![ID]
opens the form to the right record! But only that record.
I would like for all of the records to be available to the user in case they
don't want to have to go back to the menu to select another record (say the
next one in sequence).
I wonder if I can pass stLinkCriteria to the OnOpen event of the called form?
Thanks,
owp^3
Thanks Allen!
I have built a table with only the fields I want to search/filter on.
I'd like to use it as "menu."
So I added a button (though a double click would work just as well) to the
body of the form such that there is a button for each record displayed. This
button calls a "data entry" form with all of the fields for a record.
The code attached to the button uses OpenForm such that
stDocName = "user_ProjectData"
stLinkCriteria = "[ID]=" & Me![ID]
opens the form to the right record! But only that record.
I would like for all of the records to be available to the user in case they
don't want to have to go back to the menu to select another record (say the
next one in sequence).
I wonder if I can pass stLinkCriteria to the OnOpen event of the called form?
Thanks,
owp^3