G Guest Mar 17, 2007 #1 how can I optain a list of available form names. the form object would only let me access open forms....................
how can I optain a list of available form names. the form object would only let me access open forms....................
D Douglas J. Steele Mar 17, 2007 #2 Simplest way is to use the following SQL in a query: SELECT [Name] FROM MSysObjects WHERE [Type]=-32768 ORDER BY [Name]
Simplest way is to use the following SQL in a query: SELECT [Name] FROM MSysObjects WHERE [Type]=-32768 ORDER BY [Name]
A Arvin Meyer [MVP] Mar 18, 2007 #3 I use the code in the following demo database to fill a listbox with forms or reports so that I can fix Microsoft's poor naming conventions: http://www.datastrat.com/Download/FixNames2K.zip
I use the code in the following demo database to fill a listbox with forms or reports so that I can fix Microsoft's poor naming conventions: http://www.datastrat.com/Download/FixNames2K.zip