Ver Mensaje Individual
  #1  
Antiguo 13-06-2006
Avatar de Bicho
[Bicho] Bicho is offline
Miembro Premium
 
Registrado: jul 2003
Ubicación: Inca - Mallorca
Posts: 1.776
Reputación: 22
Bicho Va por buen camino
Modificar ancho en un combobox al desplegarse

Simplemente poniendo esto podemos conseguir que un combobox tenga distinto ancho al desplegarse

Código Delphi [-]
 procedure TForm1.Button1Click(Sender: TObject);
 var
    Ancho: integer;
 begin
   Ancho:=300;
   ComboBox1.Perform(CB_SetDroppedWidth,Ancho,0);
 end;
Responder Con Cita