Ver Mensaje Individual
  #2  
Antiguo 17-04-2006
Avatar de Sotrono
Sotrono Sotrono is offline
Miembro
 
Registrado: abr 2004
Ubicación: Buenos Aires - Argentina
Posts: 396
Reputación: 21
Sotrono Va por buen camino
Hola, para Xp hacelo asi:

Código Delphi [-]
  
ShowWindow( Application.Handle, SW_HIDE );
SetWindowLong( Application.Handle, GWL_EXSTYLE,
                      GetWindowLong(Application.Handle, GWL_EXSTYLE) or 
                      WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
ShowWindow( Application.Handle, SW_SHOW );

y para mostrarla:
Código Delphi [-]
ShowWindow( Application.Hanlde, SW_SHOW );

Bytes...
Responder Con Cita