Open subform based on combo-box selection

  • Thread starter Thread starter Pattyt
  • Start date Start date
P

Pattyt

Hello,
Someone might have asked this question before..but I'll go ahead and ask
anyways.

Is there a way to make a different subform open depending on the selection
chosen from a combo-box?
 
Set the SourceObject property of the control being used to hold the subform:

Me.NameOfControlContainingSubform.SourceObject = Me.NameOfComboBox
 
Back
Top