Skip to content
Home > Programming > problem locking the mic using code

problem locking the mic using code

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #187699
    method
    Member

    hi all. I used to use this code to lock the mic but for some reason it is not working.
    probably I need to change 33239 but i don’t know how to get it !! I want this to work for paltalk 9.2. Hope some one help me.Thanks

    Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" _
    (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    
    Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
    
    Const WM_COMMAND = &H111
    
    Private Sub Command17_Click()
    Dim window As Long
    
    window = FindWindow("DlgGroupChat Window Class", vbNullString)
    PostMessage window, WM_COMMAND, 33239, 0
    End Sub

     

    #187700
    Chike
    Member

    Why not search the room window’s menu for commands number?
    I believe the text haven’t changed with versions, and if it did you can match the text against several different strings, or known strings for different versions.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.