mas detalles sobre los combobox

23/01/2004 - 10:48 por Juan Antonio | Informe spam
estan creados asi:

***groupbox*****
* static1 *
* combobox *
* *
*static2static3*
* scrollbar *
* caja texto *
* boton *
* boton *
* boton *
****************

con respecto a las coordenadas:

groupbox-->330, 250, 120, 260
horizontal vertical ancho alto
static1-->338,275,100,14
combobox-->338,292,100,8
static2-->338,330,100,14

este es el codigo del combobox:

hNumeroLocomotora = CreateWindow (
"COMBOBOX",
"Nº DE LOCOMOTORA",

WS_CHILD|WS_VISIBLE|CBS_DROPDOWNLIST|CBS_SHORT,
338,292,100,8,
hWnd,
(HMENU)ID_N_LOCOMOTORA,
hInstance,
NULL
);
 

Leer las respuestas

#1 Sergio
23/01/2004 - 11:51 | Informe spam
Y por que no haces lo siguiente:

hNumeroLocomotora.Create(WS_CHILD|WS_VISIBLE|CBS_DROPDOWNLIST|CBS_SHORT,
CRect(338,292,100,8),
this,ID_N_LOCOMOTORA); //ID_N_LOCOMOTORA igual deberias sustituirlo
por un nuevo ID
hNumeroLocomotora.SetWindowPos(NULL,0,0,100,200,SWP_NOMOVE|SWP_NOZORDER);

esto deberia funcionarte sin problemas

Preguntas similares