Ver Mensaje Individual
  #11  
Antiguo 07-08-2007
Avatar de b3nshi
b3nshi b3nshi is offline
Miembro
 
Registrado: feb 2005
Ubicación: Tucuman - Argentina
Posts: 164
Reputación: 20
b3nshi Va por buen camino
Una solucion para no crear un componente nuevo

Para no tener q crear un componente nuevo simplemente podemos hacerlo asi...

Código Delphi [-]
 
//Para q sea de solo lectura
SendMessage(Getwindow (combobox1.handle),GW_CHILD,EM_SETREADONLY,1,0);
//Para q sea editable
SendMessage(Getwindow (combobox1.handle),GW_CHILD,EM_SETREADONLY,0,0);

{Saludos}
Responder Con Cita