G
Guest
Hello All,
I have a Combo box for birthdates that sends output to a report named
"Client Birthdate". What I would like to do is give the user a choice of
sending output to a Report or print output as labels.
Is is possible to have another Combo or List box appear after clicking the
first Combo Box with choices like "Send to report" and "Print as labels"? If
this isn't feasible any other suggestions are very welcome.
Here's the code from combo box named Birthdates:
Private Sub Birthdates_AfterUpdate()
DoCmd.OpenReport "Client Birthdate", acViewPreview
DoCmd.Maximize
RunCommand acCmdFitToWindow
Me.Birthdates = Null
End Sub
I have a Combo box for birthdates that sends output to a report named
"Client Birthdate". What I would like to do is give the user a choice of
sending output to a Report or print output as labels.
Is is possible to have another Combo or List box appear after clicking the
first Combo Box with choices like "Send to report" and "Print as labels"? If
this isn't feasible any other suggestions are very welcome.
Here's the code from combo box named Birthdates:
Private Sub Birthdates_AfterUpdate()
DoCmd.OpenReport "Client Birthdate", acViewPreview
DoCmd.Maximize
RunCommand acCmdFitToWindow
Me.Birthdates = Null
End Sub