psulions83
Board Regular
- Joined
- Nov 16, 2015
- Messages
- 127
Hi,
Is there a way to add the description from each item in the below queries to return the description from the properties menu for each item?
Is there a way to add the description from each item in the below queries to return the description from the properties menu for each item?
Code:
[B]Queries[/B][COLOR=#000000][FONT=Verdana]:[/FONT][/COLOR][INDENT]SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)=5 ORDER BY MSysObjects.Name;[/INDENT][COLOR=#000000][FONT=Verdana][B]Tables[/B]:[/FONT][/COLOR]
[INDENT]SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND
(Left$([Name],4) <> "Msys") AND (MSysObjects.Type)=1 ORDER BY MSysObjects.Name;[/INDENT][COLOR=#000000][FONT=Verdana][B]Reports[/B]:[/FONT][/COLOR]
[INDENT]SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)= -32764 ORDER BY MSysObjects.Name;[/INDENT][COLOR=#000000][FONT=Verdana][B]Modules[/B]:[/FONT][/COLOR]
[INDENT]SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)= -32761 ORDER BY MSysObjects.Name;[/INDENT][COLOR=#000000][FONT=Verdana][B]Macros[/B]:[/FONT][/COLOR]
[INDENT]SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND [/INDENT][COLOR=#000000][FONT=Verdana](MSysObjects.Type)= -32766 ORDER BY MSysObjects.Name;[/FONT][/COLOR]