Tema: al minimizar
Ver Mensaje Individual
  #2  
Antiguo 24-03-2005
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
Puedes usar el evento OnResize del formulario:

Código Delphi [-]
procedure TForm3.FormResize(Sender: TObject);
begin
  if IsIconic(Handle) then (Owner as TForm).WindowState := wsMinimized;
end;

// Saludos
Responder Con Cita