Hello James,
thank you for your answer.
In FW this combobox (DROPDOWN) works you can search and you can insert new data.
In my mail I mixed up Dropdown and DropdownList. Only list works.
I had a look into WINDOW-class.
DROPDOWNLIST = a TCOMBOBOX and DROPDOWN’s ClassName is TGet
METHOD KeyDown( nKey, nFlags ) CLASS TWindow
local bKeyAction := SetKey( nKey )
msginfo(str(nKey) +" keydown " +str(nFlags)+" "+Upper( ::ClassName() ) )
if Upper( ::ClassName() ) != "TGET" .and. ::bKeyDown != nil
return Eval( ::bKeyDown, nKey, nFlags )
endif
From the 16 bit DLL
CONTROL "", 1080, "COMBOBOX", CBS_DROPDOWN | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 64, 74, 288, 67
FiveWIN code
REDEFINE COMBOBOX oCbxB VAR cComboB ITEMS aComboB ID 1080 OF oFld:aDialogs [ 1 ]