beginner123
Registered User.
- Local time
- Today, 13:56
- Joined
- Apr 13, 2013
- Messages
- 44
Good Evening,
I have a query,
SELECT MSysObjects.Name AS table_name
FROM MSysObjects
WHERE (((MSysObjects.Name) Like "tbl*") AND ((Left([Name],1))<>"~") AND ((Left([Name],4))<>"MSys") AND ((MSysObjects.Type) In (1,4,6)) AND ((MSysObjects.Flags)=0))
ORDER BY MSysObjects.Name;
Which returns the table names with my database.
I can filter these to what is required and this works.
But when I add a list box and ues this query to populate the values get the following error.
List Box Wizard
No valid field can be found in "QueryTableTaskYear" Please select new source
Any help or pointers much apprieciated.
Rob
I have a query,
SELECT MSysObjects.Name AS table_name
FROM MSysObjects
WHERE (((MSysObjects.Name) Like "tbl*") AND ((Left([Name],1))<>"~") AND ((Left([Name],4))<>"MSys") AND ((MSysObjects.Type) In (1,4,6)) AND ((MSysObjects.Flags)=0))
ORDER BY MSysObjects.Name;
Which returns the table names with my database.
I can filter these to what is required and this works.
But when I add a list box and ues this query to populate the values get the following error.
List Box Wizard
No valid field can be found in "QueryTableTaskYear" Please select new source
Any help or pointers much apprieciated.
Rob