Hello,
I have a question that may be simple, but I can't seem to find where to start. I have a form I am creating that a user will be entering data into. They enter 15-20 records a week and each week will be entered on a new table.
What I am trying to create on the form is a list of my created tables and then having the user be able to select a table off of the list. By select I mean having the form data source be that selected table so they view/edit data on that table.
I do have a combo box that is running the query:
SELECT MsysObjects.Name AS
[List Of Tables]
FROM MsysObjects
WHERE (((MsysObjects.Name) Not Like "~*" And (MsysObjects.Name) Not Like "MSys*")
AND ((MsysObjects.Type)=1))
ORDER BY MsysObjects.Name;
And that list all of my tables but how would I edit the double click (or single Click) to have that selected table become the data source?
Thank you