powerid Inicial
Cantidad de envíos : 18 Fecha de inscripción : 14/08/2013 Edad : 24 Localización : Pehuajo
| Tema: Consola Transparente 11.5 dx7 Sáb Ago 17, 2013 12:33 pm | |
| Abajo del Option Explicit del FrmMain (CLIENTE y FRMMAIN TODO)
Ponen - Código:
-
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long Private Const GWL_EXSTYLE = -20 Private Const WS_EX_LAYERED = &H80000 Private Const WS_EX_TRANSPARENT As Long = &H20& Despues en frm_Load pones: - Código:
-
Call SetWindowLong(rectxt.hWnd, GWL_EXSTYLE, WS_EX_TRANSPARENT) Y listo Espero que les sirva!!! Saludos | |
|