I am trying to use %el as a list box with a user input that constantly shows the list box with the nearest item to the typed string highlighted. Ideally a use of the arrow keys and enter should then select the item required. I have related text that I have found within a Win32 API help document (shown below) which suggests that I am looking for the Combo with an Edit box. Even though this would appear to be a standard variant of a Combo box I cannot get %el to even display the list box whilst typing in the values. Could you help please. Cheers
The COMBOBOX statement creates a combination box control (a combo box). A combo box consists of either a static text box or an edit box combined with a list box. The list box can be displayed at all times or pulled down by the user. If the combo box contains a static text box, the text box always displays the selection (if any) in the list box portion of the combo box. If it uses an edit box, the user can type in the desired selection; the list box highlights the first item (if any) that matches what the user has entered in the edit box. The user can then select the item highlighted in the list box to complete the choice. In addition, the combo box can be owner-drawn and of fixed or variable height.