M
magmike
My Combo Box, if you select the arrow, WILL open and display data.
HOWEVER, when an item is clicked on, it does NOTHING and the drop down
menu does not disappear. Also, if one put the the cursor in the combo
box, it WILL blink, but one CANNOT type in it.
The combo box IS enabled. Can anyone think of any reason it would act
this way?
The code behind it:
Private Sub Combo29_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo29], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
Me.password_entry.SetFocus
Me.Command41.Visible = False
End Sub
Thanks in advance!
magmike
HOWEVER, when an item is clicked on, it does NOTHING and the drop down
menu does not disappear. Also, if one put the the cursor in the combo
box, it WILL blink, but one CANNOT type in it.
The combo box IS enabled. Can anyone think of any reason it would act
this way?
The code behind it:
Private Sub Combo29_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo29], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
Me.password_entry.SetFocus
Me.Command41.Visible = False
End Sub
Thanks in advance!
magmike