syslistview32.

You can talk about VB programming here

syslistview32.

Postby Limit » Sun Jul 03, 2005 11:25 am


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 :wink:
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Limit » Sun Jul 03, 2005 11:36 am

hey hacky, wanna work together again? 8)
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Guest » Sun Jul 03, 2005 1:49 pm

You talking about...

Code: Select all
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?
Guest
 

Postby Limit » Sun Jul 03, 2005 3:04 pm

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
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Guest » Sun Jul 03, 2005 4:04 pm

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 :lol: 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)
Guest
 

Postby Limit » Sun Jul 03, 2005 4:16 pm

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 :(
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Guest » Sun Jul 03, 2005 4:28 pm

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.
Guest
 

Postby NVYE » Sun Jul 03, 2005 7:48 pm

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", "")
User avatar
NVYE
imFiles Senior
imFiles Senior
 
Posts: 234
Joined: Fri Jun 10, 2005 11:29 pm

Postby Guest » Mon Jul 04, 2005 12:39 am

Arghhh! i dont think there is a Declare Function for syslistview think the the other thing close to that would be
Code: Select all
Dim syslistview As Long
i unban myself and played around but i didn't have no luck
Guest
 

Postby Limit » Mon Jul 04, 2005 3:30 am

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

Image
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Departure » Mon Jul 04, 2005 7:32 am

what postmeesage statment did you make limit?? or did you sendmessageaslong??
User avatar
Departure
Global Moderator
Global Moderator
 
Posts: 996
Joined: Thu Mar 17, 2005 11:26 am
Location: Australia

Postby Departure » Mon Jul 04, 2005 7:41 am

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)
User avatar
Departure
Global Moderator
Global Moderator
 
Posts: 996
Joined: Thu Mar 17, 2005 11:26 am
Location: Australia

Postby Limit » Mon Jul 04, 2005 10:17 am

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
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Limit » Mon Jul 04, 2005 10:19 am

Code: Select all
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
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Postby Limit » Mon Jul 04, 2005 10:20 am

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.
Limit
imFiles Newbie
imFiles Newbie
 
Posts: 16
Joined: Sat Jul 02, 2005 9:23 pm

Next

Return to Visual Basic Programming

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 0 guests