Hi guys,
I have a list box which displays the results of a search query:
SELECT tblProducts.[Product No], tblProducts.[Item No], tblProducts.[Item Description 1], tblProducts.[Element Description], tblProducts.Updated
FROM tblProducts
WHERE (((tblProducts.[Element Description]) Like "*" & [type prompt here] & "*"));
Basically the user can update the records displayed and the update field is made true for that record.
After the update I want to refresh the listbox so that the user can see what the new updated status of the records, but by using listbox.requery - i get a pop up box asking me to type in a prompt again.... i dont want this i just want to automaticallt refresh the listbox records on the page.... is this possible..what way can access remember the value i inititally entered as the prompt.
tks guys all help is appreciated!
Maggie May
I have a list box which displays the results of a search query:
SELECT tblProducts.[Product No], tblProducts.[Item No], tblProducts.[Item Description 1], tblProducts.[Element Description], tblProducts.Updated
FROM tblProducts
WHERE (((tblProducts.[Element Description]) Like "*" & [type prompt here] & "*"));
Basically the user can update the records displayed and the update field is made true for that record.
After the update I want to refresh the listbox so that the user can see what the new updated status of the records, but by using listbox.requery - i get a pop up box asking me to type in a prompt again.... i dont want this i just want to automaticallt refresh the listbox records on the page.... is this possible..what way can access remember the value i inititally entered as the prompt.
tks guys all help is appreciated!
Maggie May