Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long)
If Me.ActiveControl.Name = "combo2" Then
If Count > 0 Then
Me.ActiveControl.Text = Me.ActiveControl.Text - 1
Else
Me.ActiveControl.Text = Me.ActiveControl.Text + 1
End If
End If
End Sub