- This topic has 33 replies, 6 voices, and was last updated 19 years ago by Limit.
-
AuthorPosts
-
July 3, 2005 at 4:25 pm #189457LimitMember
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 😉
July 3, 2005 at 4:36 pm #189490LimitMemberhey hacky, wanna work together again? 8)
July 3, 2005 at 6:49 pm #189489AdminAdministratorYou 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 Longyou 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?
July 3, 2005 at 8:04 pm #189488LimitMemberoh 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
July 3, 2005 at 9:04 pm #189487AdminAdministratoryea 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)
July 3, 2005 at 9:16 pm #189486LimitMembertheres 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 🙁July 3, 2005 at 9:28 pm #189485AdminAdministratori 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.
July 4, 2005 at 12:48 am #189484AhFoxMemberHehehehe 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”, “”)July 4, 2005 at 5:39 am #189483AdminAdministratorArghhh! 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
July 4, 2005 at 8:30 am #189482LimitMemberhey, NVYE thanks a million man
i got it working now,July 4, 2005 at 12:32 pm #189481DepartureMemberwhat postmeesage statment did you make limit?? or did you sendmessageaslong??
July 4, 2005 at 12:41 pm #189480DepartureMemberheres 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)
July 4, 2005 at 3:17 pm #189479LimitMemberoh 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
July 4, 2005 at 3:19 pm #189478LimitMemberDim 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 lolJuly 4, 2005 at 3:20 pm #189477LimitMemberi 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.
-
AuthorPosts
Related
- You must be logged in to reply to this topic.