Hi, i'm trying to find "FlashPlayerPlugin_11_6_602_171.exe" in findwindow function but i couldn't because it need the caption not the program name
So any ideas??
My code so far,
So any ideas??
My code so far,
Code:
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Sub Command1_Click()
text1.text = FindWindow(vbNullString, "FlashPlayerPlugin_11_6_602_171")
End Sub