View Full Version : Open a form


skelley
03-12-2001, 07:17 AM
How can I open a specific form based on the value of a pulldown cell in another form?
(ie. value list = blower, burner. I want to open the blower form if value is blower and the burner form is value burner)

llkhoutx
03-12-2001, 09:39 AM
Pass the combo box value to a subroutine

Private Sub CallcboForm (frmName as Control)
docmd.openform frmName
End Sub