Salut tout, j'essaie de comprendre pourquoi cela n'envoie pas un ALT + F au bloc-notes!Findwindow et SendMessage
Private Declare Function FindWindow1 Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Const WM_KEYUP = &H101
Private Const WM_KEYDOWN = &H100
Private Const WM_SYSKEYDOWN = &H104
Private Sub Command_Click()
Dim parenthwnd As Long
Dim hwnd As Long
parenthwnd = FindWindow1(vbNullString, "Untitled - Notepad")
retvalue = SendMessage(parenthwnd, WM_SYSKEYDOWN, VK_MENU, 1&)
retvalue = SendMessage(parenthwnd, WM_KEYDOWN, VK_F, 1&)
End Sub
je reçois une valeur pour parenthwnd mais pas pour l'une des valeurs retvalue (0).
Qu'est-ce que je manque ???
David
Quelqu'un d'autre veut-il tenter le coup? – StealthRT