is there any way that i can select forms from my combo box or even macros, or is there another way that i can make a drop down list for speedily opening forms
What about this SQL to filter all forms prefixed with 'frm'?
SELECT MSysObjects.Name, MSysObjects.Type
FROM MSysObjects
WHERE (((MSysObjects.Name) Like "frm*") AND ((MSysObjects.Type)=-32768))
ORDER BY MSysObjects.Name;
i began by typing your code into the computers at school which are crap, i then typed it in again when i got home and all of the form names are brought up like i wanted. but when i click on the names of the forms i want them to be opened.
is this at all possible or am i still doing something wrong here
and is it also possible for me to only have a select few forms that are visible in the combo box other than changing all of the frm's to something like afrm