David McAfee
DMcAfee at haascnc.com
Mon Mar 31 20:26:28 CST 2003
No I am actually using A2K (ADP). I originally did something similar in an A97 MDB. Couldn't I create an ADO recordset (or Array) and add the obj.Name to it as I loop, then sort it (ascending) prior to assigning the recordset to a listbox? PS You have to try one of my margaritas one day (maybe the next US Access-D conference). I make a great strawberry and raspberry (fresh from the garden) blended margarita! TIA David -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com]On Behalf Of Susan Harkins Sent: Monday, March 31, 2003 5:55 PM To: accessd at databaseadvisors.com Subject: Re: [AccessD] How do I list all forms in an ADP (no MSysObjects) <snip> should list the forms in a combo box -- but it won't be sorted in any particular order -- and I'm not sure about that strList statement -- had margueritas for supper. :) Ah crap - -you're using 97 -- I don't think this will work in 97 -- AllForms is new to 2000 isn't it? In that case, try Dim db As DAO.Database Dim cnt As DAO.Container Dim doc As DAO.Document Dim strTemp as String Dim strList As STring Set db = CurrentDB Set cnt = db.Containers!Forms For Each doc In cnt.Documents strTemp = doc.Name & ";" & strTemp Next combobox.RowSource = strList Susan H. > In an Access 97 MDB, I can use the following SQL statement to list all forms > in an MDB: > > SELECT MSysobjects.Name > FROM MSysobjects > WHERE (((MSysobjects.Type)= -32768)) > ORDER BY MSysobjects.Name; > > I know there are no local tables in an ADP, but somehow, somewhere, Access > must be keeping this information. Is there an equivalent way of doing the > same (either SQL or VBA) in an ADP? > > > TIA > > David McAfee > _______________________________________________ > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com