Skip to content

Get Paltalk Windows Title VB.6

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #186553
    Admin
    Administrator

    This another way to get Paltalk windows title 🙂

    One thing it will get all open windows, but it will include pms, you just need to do a look for “-rooms” to add just pms

    Private Function GetText(Get_hWnd As Long) As String
    Dim lenTxt As Long, retText As String
    lenTxt = GetWindowTextLength(Get_hWnd) + 1
    retText = String$(lenTxt, " ")
    GetWindowText Get_hWnd, retText, lenTxt
    GetText = retText
    End Function

    Call it with

    Combo1.AddItem GetText(FindWindow("dlggroupchat window class", vbNullString))
    #186555
    Chike
    Member

    Better change

    retText = String$(lenTxt, " ")

    to

    retText = Space$(lenTxt)

    No preview, no quote, you call this a forum? It’s BS

    #186554
    Admin
    Administrator

    Thanks Chike 🙂
    Man I just started messing with this bbpress hehehe Im telling you at the end is gonna kick phpbb asz 🙂

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