Atholl New member Local time Today, 18:10 Joined Aug 29, 2005 Messages 7 Aug 29, 2005 #1 Hi all, The title says it all; how can I make a form appear when something is selected from a combo box? Thanks in advance, Atholl
Hi all, The title says it all; how can I make a form appear when something is selected from a combo box? Thanks in advance, Atholl
D dopedealer Systems Analyst Local time Today, 18:10 Joined Apr 6, 2005 Messages 145 Aug 29, 2005 #2 On the AfterUpdate Event of the ComboBox in question Code in VBA along the lines of: Private Sub ComboSomeCombo_AfterUpdate() If ComboSomeCombo.Value = "SomeValueinthelist" Then DoCmd.OpenForm "frmSomeForm" End If End Sub hth Chris
On the AfterUpdate Event of the ComboBox in question Code in VBA along the lines of: Private Sub ComboSomeCombo_AfterUpdate() If ComboSomeCombo.Value = "SomeValueinthelist" Then DoCmd.OpenForm "frmSomeForm" End If End Sub hth Chris
Atholl New member Local time Today, 18:10 Joined Aug 29, 2005 Messages 7 Aug 29, 2005 #3 Cheers for that, works a charm Atholl