Nuevo Foro de programacion
0 Usuarios y 1 Visitante están viendo este tema.
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lParam As Any) As LongPrivate Declare Sub InitCommonControls Lib "comctl32" ()Private Const BCM_SETSHIELD As Long = &H160C&Private Sub Form_Initialize()InitCommonControlsCall SendMessage(Command1.hwnd, BCM_SETSHIELD, 0, 1&)End Sub