Skip to content

syslistview32.

Viewing 15 posts - 1 through 15 (of 34 total)
  • Author
    Posts
  • #189457
    Limit
    Member

    hey, i know how to get the items from syslistview32, in paltalk. but i need the codes to find that window..

    “the syslistview32 window on paltalk in a chat room, then a new age checker program will be made.. i got everything made, and thats the only thing stopping me.

    any help? if not, then oh well lol

    ill put ya down on as a helper for making it 😉

    #189490
    Limit
    Member

    hey hacky, wanna work together again? 8)

    #189489
    Admin
    Administrator

    You talking about…

    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

    you can use private or public i use private must of the time when i dont wanna use a mod..

    is that what your looking for?

    #189488
    Limit
    Member

    oh naw man, i got all that, im just having trouble getting the syslistview32 handle, everytime i try it returns with a 0

    something i have to find first b4 i can get to the syslistview32,
    and i dont know what it is.

    i just need help finding the syslistview32 Handle.

    then i’d be good as ever

    #189487
    Admin
    Administrator

    yea i dunno if there is a handle for that then again maybe there is maybe this is why my age checker wasn’t working 😕 i made one because sk8er didn’t think i could however i got it half way done now i think im stuck where your at. but im not worried about paltalk coding right now i trying to get my site finished but im taken a break html is alot of work when you dont wanna use a editor. hey by the way guys i fu©ked my knee up playing basketball i think and i might need knee surgery yay for me huh? not looking for anyway one to feel sorry just figured i would add on to how much life sux 😆 anyways going to my doctor tommrow which is july 4th like hes going to be open but i guess i’ll find out ;D later jews…….. 8)

    #189486
    Limit
    Member

    theres a handle for it, i found it with a api spy thing, and everything, but theres something hidden that has to be found first, to get to that syslistview32, and thats my only trouble, so i dunno lol
    and oh fucked ur knee up, that sucks :-/
    good luck with that 🙁

    #189485
    Admin
    Administrator

    i would look more into that for you but im ban from all rated groups and im too lazy to get out of it even thou i can get out of it in like a few mins just to lazy.

    #189484
    AhFox
    Member

    Hehehehe here is the CODE

    Dim lParent As Long
    Dim lChild(1 To 5) As Long
    Dim reason As String

    ‘Get Parent Window
    lParent = FindWindow(“My Window Class”, “Title here … ROOM’s name”)
    ‘Get Child Window(s)
    lChild(1) = FindWindowEx(lParent, 0, “WTL_SplitterWindow”, “”)
    lChild(2) = FindWindowEx(lChild(1), 0, “WTL_SplitterWindow”, “”)
    lChild(3) = FindWindowEx(lChild(2), 0, “WTL_SplitterWindow”, “”)
    lChild(4) = FindWindowEx(lChild(3), 0, “ATL:004FE7B8”, “”)
    lChild(5) = FindWindowEx(lChild(4), 0, “SysListView32”, “”)

    #189483
    Admin
    Administrator

    Arghhh! i dont think there is a Declare Function for syslistview think the the other thing close to that would be

    Dim syslistview As Long

    i unban myself and played around but i didn’t have no luck

    #189482
    Limit
    Member

    hey, NVYE thanks a million man
    i got it working now,

    #189481
    Departure
    Member

    what postmeesage statment did you make limit?? or did you sendmessageaslong??

    #189480
    Departure
    Member

    heres another way to go about getting the systemlistview32, i always have used this example to get the systemlistview as the WM_GETTEXT always returns 0.

    But Limit i would realy like to know how you went about getting it, its proberly something easy i have looked over in the past as normal lol :O)

    #189479
    Limit
    Member

    oh you can use fpdedemo2.lv.rar, what departure has posted there, thats a simple way, without making paltalk crash when you try to receive the names and such.. you can use that, its a easy way

    #189478
    Limit
    Member
    Dim lchild As Long
    Dim lchild1 As Long
    Dim lchild2 As Long
    Dim lchild3 As Long
    Dim lchild4 As Long
    Dim lchild5 As Long
    Dim reason As String
    lParent = FindWindow("My Window Class", vbNullString)
    lchild1 = FindWindowEx(lParent, 0, "WTL_SplitterWindow", "")
    lchild2 = FindWindowEx(lchild1, 0, "WTL_SplitterWindow", "")
    lchild3 = FindWindowEx(lchild2, 0, "WTL_SplitterWindow", "")
    lchild4 = FindWindowEx(lchild3, 0, "ATL:004FE7B8", "")
    lchild5 = FindWindowEx(lchild4, 0, "SysListView32", "")

    then use that as the target handle, and you’ll receive the users list

    can slap the users into a listbox, then search the listbox entry’s for “@”
    and add them to another listbox
    and thats how i did the whole “Admins in Room” thing
    but all i needed was the simple little code, and i had it and i told you i would have it lol

    #189477
    Limit
    Member

    i can make a age checker, its no problem, but i was use to working with systreeview32, not syslistview32, so i gotta get some syslistview32 api’s and shit and update my systreeview32 api’s to syslistview32.

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