S
S Jackson
Sorry for the double post - see Build Query to Collect Names of Report
Objects - but I need this done by Friday and am in a bit of a mess.
I have three tables: tblReports, tblGroups, tblGroupMembers
I want to build a form so that a user who has created a new report can add
the report to the reports table. Then a second form to add the report to
tblGroupMembers.
The first form to allow the user to add the new report to the reports table
is giving me trouble. The form's source is tblReports. The first unbound
control is suppose to be a drop-down list of all report objects contained in
db:
SELECT [Name]
FROM MSysObjects
WHERE [Type] = -32764;
The user will select the new report from the list - now how do I add this
selection to the tblReports? The selection needs to be entered into the
field [rptFileName] in tblReports.
Then I want to user to fillin the remaining fields in tblReports - [RptName]
(this is not the file name, but rather a descriptive name) and
[RptDescription]. I also want these fields to be automatically populated if
the user selects a report that already belongs to tblReports.
I'm lost and in a fog here. Any help is appreciated.
S. Jackson
Objects - but I need this done by Friday and am in a bit of a mess.
I have three tables: tblReports, tblGroups, tblGroupMembers
I want to build a form so that a user who has created a new report can add
the report to the reports table. Then a second form to add the report to
tblGroupMembers.
The first form to allow the user to add the new report to the reports table
is giving me trouble. The form's source is tblReports. The first unbound
control is suppose to be a drop-down list of all report objects contained in
db:
SELECT [Name]
FROM MSysObjects
WHERE [Type] = -32764;
The user will select the new report from the list - now how do I add this
selection to the tblReports? The selection needs to be entered into the
field [rptFileName] in tblReports.
Then I want to user to fillin the remaining fields in tblReports - [RptName]
(this is not the file name, but rather a descriptive name) and
[RptDescription]. I also want these fields to be automatically populated if
the user selects a report that already belongs to tblReports.
I'm lost and in a fog here. Any help is appreciated.
S. Jackson