Originally posted by DaveR
thats works well , but when you press enter after your selected
text appears , which a lot of people would instinctively do , the
combo opens up , when you really want it to go down..
Thats easily addressed DaveR.
VB Code:
  1. Private Sub Text1_KeyPress(KeyAscii As Integer)
  2.  
  3.       If KeyAscii = 13 Then 'user hit enter key
  4.          Dim lRet&
  5.          lRet = SendMessage(Combo1.hwnd, CB_SHOWDROPDOWN, 1, ByVal 0&)
  6.     End If
  7.  
  8. End Sub