winuser.h
Mensaje CB_SHOWDROPDOWN
Definición
CB_SHOWDROPDOWN wParam = (WPARAM) (BOOL) fShow; // bandera de mostrar/ocultar lParam = 0; // no usado; debe ser cero
Una aplicaciión envía un mensaje CB_SHOWDROPDOWN para mostrar u ocultar el list box de un combo box que tenga el estilo CBS_DROPDOWN o CBS_DROPDOWNLIST.
Descripción
fShow: valor de wParam. Especifica si el list box desplegable debe ser mostrado u ocultado. Un valor TRUE muestra el list box; un valor FALSE lo oculta.
Valor de retorno
El valor de retorno siempre es TRUE.
Observaciones
Este mensaje no tiene efecto en un combo box creado con el estilo CBS_SIMPLE.