L
Laurel
I want to highlight the contents of a combo box when the user clicks in it,
so they can easily replace what's there with new text. I want to mimic the
behavior of tabbing into the combo box. It looks like I should use
something like this in the click event
With cboFind
.SelStart = 0
.SelLength = Len(.Text)
End With
But that didn't work.. I tried putting it in the GotFocus event and the
Enter event, but that didn't highlight anything either. Is there any way to
accomplish this?
TIA
LAS
so they can easily replace what's there with new text. I want to mimic the
behavior of tabbing into the combo box. It looks like I should use
something like this in the click event
With cboFind
.SelStart = 0
.SelLength = Len(.Text)
End With
But that didn't work.. I tried putting it in the GotFocus event and the
Enter event, but that didn't highlight anything either. Is there any way to
accomplish this?
TIA
LAS