P
Paterson10987
Is there some way I can automatically put the names of my reports into the
row source of a combo box or list.
Thanks
row source of a combo box or list.
Thanks
Apprentice said:I useing the code from Allen Browne. It works great to create a drop
down box to select reports, but I don't know the code to put into
the "Afterupdate" of the list box that would open the selected
report in a Preview Mode. Any help would be great....
Here is Allen's code used in the row source of the list box:
SELECT MsysObjects.Name
FROM MsysObjects
WHERE (((MsysObjects.Name) Not Like "~*" And (MsysObjects.Name) Not
Like "MSys*") AND ((MsysObjects.Type)=-32764))
ORDER BY MsysObjects.Name;