
05/12/2004, 21:13
|
 | | | Fecha de Ingreso: octubre-2003 Ubicación: cordoba,andalucia
Mensajes: 52
Antigüedad: 21 años, 6 meses Puntos: 0 | |
si señor este ultimo si funciona le he añadio sus botones de minimizar y cerrar
Option Explicit
Private Declare Function SetWindowPos Lib "user32" ( _
ByVal hWnd As Long, _
ByVal hWndInsertAfter As Long, _
ByVal x As Long, _
ByVal Y As Long, _
ByVal cx As Long, _
ByVal cy As Long, _
ByVal uFlags As Long) As Long
Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" ( _
ByVal hWnd As Long, _
ByVal nIndex As Long) As Long
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" ( _
ByVal hWnd As Long, _
ByVal nIndex As Long, _
ByVal dwNewLong As Long) As Long
Private Const HWND_TOPMOST As Long = -1
Private Const GWL_STYLE As Long = (-16)
Private Const WS_DLGFRAME As Long = &H400000
Private Const WS_BORDER As Long = &H800000
Private Const WS_THICKFRAME As Long = &H40000
Private Sub Command1_Click()
WindowState = 1
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Form_Load()
Dim lWinStyle As Long
lWinStyle = GetWindowLong(Me.hWnd, GWL_STYLE)
lWinStyle = lWinStyle And Not WS_BORDER
lWinStyle = lWinStyle And Not WS_DLGFRAME
lWinStyle = lWinStyle And Not WS_THICKFRAME
SetWindowLong Me.hWnd, GWL_STYLE, lWinStyle
SetWindowPos Me.hWnd, HWND_TOPMOST, 0, 0, _
Screen.Width \ Screen.TwipsPerPixelX, _
Screen.Height \ Screen.TwipsPerPixelY, 0&
End Sub
muchas gracias amigos...seguire por aqui.hasta luego
Última edición por enanoracing; 05/12/2004 a las 21:16 |