I
Ixtreme
Hi,
I have a listbox that contains a list of all queries I have created.
The rowsource of the listbox control =
SELECT MSysObjects.Name
FROM MsysObjects
WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)=5
ORDER BY MSysObjects.Name;
What I want is to execute the query from the list if the user
doubleclicks on it or clicks a button (Go!) on the same form. Somehow
I can't find an answer to this simple question.
I have a listbox that contains a list of all queries I have created.
The rowsource of the listbox control =
SELECT MSysObjects.Name
FROM MsysObjects
WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)=5
ORDER BY MSysObjects.Name;
What I want is to execute the query from the list if the user
doubleclicks on it or clicks a button (Go!) on the same form. Somehow
I can't find an answer to this simple question.