I have a combo box that brings up the projects that were worked on. But, whenever i put this code in to show that the user is hovering over the combo it doesn't let me select the combo drop down arrow. Whenever i select it, the drop down box comes up, but doesnt stay dropped down. Why not? Heres my code:
Private Sub cboProjectID_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.cboProjectID.BorderColor = 10485760
Me.cboProjectID.SpecialEffect = 0
End Sub
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.cboProjectID.BorderColor = 0
Me.cboProjectID.SpecialEffect = 2
End Sub
This is to sort of highlight the combobox so that the user knows he is over the combo. Just for another cool trick, if i cannot do this that is ok, but it was just something i was trying to do. Any help would be great thanks!
One Ring to Rule Them All, One Ring to Find Them, One Ring to Bring Them All, and in the Darkness Bind Them.
Private Sub cboProjectID_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.cboProjectID.BorderColor = 10485760
Me.cboProjectID.SpecialEffect = 0
End Sub
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.cboProjectID.BorderColor = 0
Me.cboProjectID.SpecialEffect = 2
End Sub
This is to sort of highlight the combobox so that the user knows he is over the combo. Just for another cool trick, if i cannot do this that is ok, but it was just something i was trying to do. Any help would be great thanks!
One Ring to Rule Them All, One Ring to Find Them, One Ring to Bring Them All, and in the Darkness Bind Them.