A
AccessFreak via AccessMonster.com
Here's the code:
Private Sub Combo5_Change()
Select Case Me.Combo5.ListIndex
Case "Employee"
List7.Visible
SetValue = True
List9.Visible
SetValue = False
Case "Training"
List7.Visible
SetValue = False
List9.Visible
SetValue = True
End Select
End Sub
Thoughts why I get a "Compile Error: Invalid Use of Property? "Private Sub
Combo5_Change()" is highlighted in the debugger. Thanks!
Private Sub Combo5_Change()
Select Case Me.Combo5.ListIndex
Case "Employee"
List7.Visible
SetValue = True
List9.Visible
SetValue = False
Case "Training"
List7.Visible
SetValue = False
List9.Visible
SetValue = True
End Select
End Sub
Thoughts why I get a "Compile Error: Invalid Use of Property? "Private Sub
Combo5_Change()" is highlighted in the debugger. Thanks!