Ver Mensaje Individual
  #2  
Antiguo 31-08-2006
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Código Delphi [-]
procedure TForm1.SpeedButton1Click(Sender: TObject);
var
  I := Integer;

begin
  for I := 0 to ListBox2.Items.Count - 1 do
    if ListBox2.Items[i] = 'N' then
    begin
      Height := 200;
      Width := 300;

      break;
    end;      
end;

// Saludos
Responder Con Cita