A
Allen Browne
The official approach is to go through the Containers, Documents, Forms
collection. Exmaple in help.
The undocumented approach is to query the system tables directly:
SELECT [Name] FROM MsysObjects
WHERE (([Type] = -32768) AND ([Name] Not Like '~*'))
ORDER BY MsysObjects.Name;
collection. Exmaple in help.
The undocumented approach is to query the system tables directly:
SELECT [Name] FROM MsysObjects
WHERE (([Type] = -32768) AND ([Name] Not Like '~*'))
ORDER BY MsysObjects.Name;