Hi
Here's some Access VBA:
Dim found As Boolean
Dim frm As Form
found = False
For Each frm In Forms
If frm.Name = "SelectType" Then
found = True
End If
Next
strReportType = Forms!SelectType!ReportTypeCombo.Value
Now depending on what has been chosen in the drop down list (ReportTypeCombo), how would I go about opening certain (already existing) reports?
TIA,
Bishman
Here's some Access VBA:
Dim found As Boolean
Dim frm As Form
found = False
For Each frm In Forms
If frm.Name = "SelectType" Then
found = True
End If
Next
strReportType = Forms!SelectType!ReportTypeCombo.Value
Now depending on what has been chosen in the drop down list (ReportTypeCombo), how would I go about opening certain (already existing) reports?
TIA,
Bishman