![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
|||||||
| Registrarse | FAQ | Miembros | Calendario | Guía de estilo | Temas de Hoy |
|
|
Herramientas | Buscar en Tema | Desplegado |
|
#2
|
||||
|
||||
|
Código:
__fastcall TForm2::TForm2(TComponent* Owner)
: TForm(Owner)
{
SetWindowLong(Handle, GWL_EXSTYLE, GetWindowLong(Handle, GWL_EXSTYLE) | WS_EX_LAYERED);
SetLayeredWindowAttributes(Handle, 0, 255, LWA_ALPHA);
}
void __fastcall TForm2::FormActivate(TObject *Sender)
{
for (int blend = 200; blend < 256; blend+=5)
{
SetLayeredWindowAttributes(Handle, 0, blend, LWA_ALPHA);
Sleep(10);
}
}
void __fastcall TForm2::FormDeactivate(TObject *Sender)
{
for (int blend = 255; blend > 200; blend-=5)
{
SetLayeredWindowAttributes(Handle, 0, blend, LWA_ALPHA);
Sleep(10);
}
}
|
|
|
Temas Similares
|
||||
| Tema | Autor | Foro | Respuestas | Último mensaje |
| No me aparece mi tabla completa | Nbull | Conexión con bases de datos | 6 | 15-12-2005 13:47:19 |
| Porque No Aparece? | ddd_ddd | Impresión | 7 | 27-10-2005 22:07:13 |
| Problemas me aparece key violation | zugazua2001 | Varios | 4 | 12-10-2005 13:03:32 |
| No Aparece colmna en dbgrid | fran | Tablas planas | 11 | 15-03-2004 19:31:26 |
| FilenameEdit no aparece | ANETO | Varios | 1 | 02-06-2003 13:35:51 |
|