Hey I was working a little on the admin bot, but here my big problem
I can,t highlight the nick on the room list accurately, lol I being using this code to hightlight the nick
- Code: Select all
Dim mywindowclass As Long, wtlsplitterwindow As Long, atlb As Long
Dim syslistview As Long
mywindowclass = FindWindow("my window class", Text5)
wtlsplitterwindow = FindWindowEx(mywindowclass, 0&, "wtl_splitterwindow", vbNullString)
wtlsplitterwindow = FindWindowEx(wtlsplitterwindow, 0&, "wtl_splitterwindow", vbNullString)
wtlsplitterwindow = FindWindowEx(wtlsplitterwindow, 0&, "wtl_splitterwindow", vbNullString)
atlb = FindWindowEx(wtlsplitterwindow, 0&, "atl:005047b8", vbNullString)
syslistview = FindWindowEx(atlb, 0&, "syslistview32", vbNullString)
Call SendMessageByString(syslistview, WM_LBUTTONDOWN, 0&, 0&)
SendKeys Text6 + vbCr
where Text6 is the textbox where the nick goes
anyways I just wondering if anyone has being able to accurately do it, lol like with the method i am using its about 10 percent accuratley





