I want to create two CombiFields in an Access Form:
- the first one should show all Table Names of the DB in a dropdown(*)
- and the second one should show all column names from the Table which has been choosed in the first Combifield.
Any ideas?
(*) I already have the first Code:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Flags)=0) AND ((MSysObjects.Type)=1));