- This topic has 2 replies, 2 voices, and was last updated 15 years ago by String.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
April 12, 2009 at 8:17 pm #187359methodMember
Hi all. I wonder how we can highlight and send double click to video library window of paltalk (Video controle console window)?I don’t know what class name it has. Most of other listviews got systemlistview32 name but not this one. I tried to get hwnd using following method but it always gives me nothing!!
I be happy if you guys tell me how we can deal with such a listview? Looking forward for replies.Thanks
Private Sub Command1_Click()
Dim hWnd As Long
hWnd = getHwnd
End sub
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Function getHwnd() As Long
'this part i used PAT or Jk's API spy 5.1
Dim atlc As Long, atlcf As Long, atla As Long
atlc = FindWindow("atl:008047c0", vbNullString)
atlcf = FindWindowEx(atlc, 0&, "atl:00819cf0", vbNullString)
atla = FindWindowEx(atlcf, 0&, "atl:00819a30", vbNullString)
getHwnd=atla
End FunctionApril 13, 2009 at 12:22 am #187361StringMemberI’m not yet sure which listview you are referring to. Where?
April 13, 2009 at 1:14 am #187360 -
AuthorPosts
Related
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.