Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
SetExtendedUI
CComboBox                                   Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  Windows 3.1 only
 
  int SetExtendedUI( BOOL bExtended = TRUE );
 
  Parameter   Description
 
  <bExtended> Specifies whether the combo box should use the extended user
              interface or the default user interface. A value of TRUE
              selects the extended user interface; a value of FALSE
              selects the standard user interface.
 
  Remarks
 
  Call the SetExtendedUI member function to select either the default user
  interface or the extended user interface for a combo box that has the
  CBS_DROPDOWN or CBS_DROPDOWNLIST style.
 
  The extended user interface differs from the default user interface in
  the following ways:
 
  ■   Clicking the static control displays the list box
      CBS_DROPDOWNLIST style only).
 
  ■   Pressing the DOWN ARROW key displays the list box (F4 is disabled).
 
  ■   Scrolling in the static control is disabled when the item list is
      not visible (the arrow keys are disabled).
 
  Return Value
 
  CB_OKAY if the operation is successful or CB_ERR if an error occurred.
 
  See Also
 
  CComboBox::GetExtendedUI, CB_SETEXTENDEDUI
 
 
                                     -♦-