I've searched this only to find responses dated more than about 4 years ago and not exactly working for my issue, so hopefully someone here can help me out.
I have a form with a combo box listing all my report names who's name is reportlist
the row source for this combo box is as followed:
There are two things i'd like to do.
1. How would I go about using this same "query" embeded into the combo box in order to create a second column so the names of the reports are more user friendly.
2. Now that I have the combo box set up, minus the user friendly wording of it, I need to create three buttons that point at that combo box to do one of three things.
Print, email, or save as
I currently have a form with a button for every report to open, email, and save as which is literally crowding the form and making it unappealing, not so eye friendly either.
Can anyone help.
thanks in advance.
Much appreciated.
David
I have a form with a combo box listing all my report names who's name is reportlist
the row source for this combo box is as followed:
Code:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like "termination report") AND ((MSysObjects.Type)=-32764))
ORDER BY MSysObjects.Name;
There are two things i'd like to do.
1. How would I go about using this same "query" embeded into the combo box in order to create a second column so the names of the reports are more user friendly.
2. Now that I have the combo box set up, minus the user friendly wording of it, I need to create three buttons that point at that combo box to do one of three things.
Print, email, or save as
I currently have a form with a button for every report to open, email, and save as which is literally crowding the form and making it unappealing, not so eye friendly either.
Can anyone help.
thanks in advance.
Much appreciated.
David