Incremental Combobox
Posted: Tue Aug 26, 2014 11:42 pm
The Combobox class from 08/2013 handles incremental search as the user enters characters. The exact same code with the current version of combobox does not.
PRG code:
RC Code:
What changed in the class, and what do I need to do to get it to work with the lastest code ?
PRG code:
Code: Select all | Expand
REDEFINE COMBOBOX oCbx VAR oClir:clicty ITEMS aCit ID 865 OF oDcl ;
STYLE CBS_DROPDOWN MESSAGE "Enter the clients city" UPDATE
RC Code:
Code: Select all | Expand
CONTROL "", 865, "ComboBox", WS_BORDER|CBS_DROPDOWN|WS_VSCROLL|WS_TABSTOP, 58, 100, 154, 191
What changed in the class, and what do I need to do to get it to work with the lastest code ?