Dont forget to update the “NicList Class” and it should work for you….
But, Could you please let us know if you need this for vb.net or vb6? I download the version posted by STRING. Just update the Nickclass list and it should work for you….
Yes i tried and get this code, but still doesn’t get names tO list box.
Don’t appear me any error message but the code not work
' path to Pal registry entry containing version info
Const PalVerRegLoc As String = "HKLMSOFTWAREMicrosoftWindowsCurrentVersionUninstallPalTalk8.2"
Const PalVerRegLoc10Beta As String = "HKLMSOFTWAREMicrosoftWindowsCurrentVersionUninstallPaltalk Messenger"
Const PalVerRegLocBuildNumber As String = "HKCUSoftwarePaltalk"
' PalTalk v10.2 beta build 450
Const SendTxtIndex10Beta450 As Integer = 3
Const ChaTxtIndex10Beta450 As Integer = 4
Const NicListIndex1010Beta450 As Integer = 5
' PalTalk v10
Const Outbound_InboundTextClass10 As String = "RichEdit20W"
Const SendTxtIndex10 As Integer = 2
Const ChaTxtIndex10 As Integer = 3
Const NicListIndex10 As Integer = 5
Const SplittrWindow10 As String = "SplitterWindowEx"
Const SplittrIndex10 As Integer = 4
Const SysListCtrlClass10 As String = "atl:00a2cff0"
Function NickGet()
Dim iHnd As Long
If Len(Combo1.Text) > 1 Then
FindTheWindow (Combo1.Text)
End If
'get nicks
iHnd = SystenViewHandle
Call GetListviewItem(iHnd)
End Function
Private Function SystenViewHandle() As Long
Dim iPHnd As Long
iPHnd = getPalSubForm(WindowClass, Combo1.Text, SplittrWindow10, SplittrIndex10)
SystenViewHandle = GetTheClassHnd(iPHnd, SysListView32index, "atl:00a2cff0")
Debug.Print ("SystenViewHandle- " & SystenViewHandle) ' for testing
End Function
Public Function GetTheClassHnd(ByVal ParentTargethwnd As Long, ByVal TargetIndex As Long, TargetCls As String) As Long
'Returns a class's handle
Dim retVal As Long
mTargetSubClass = TargetCls
mTargetSubClassIndex = TargetIndex
retVal = EnumChildWindows(ParentTargethwnd, AddressOf EnumChildProc, TargetIndex)
GetTheClassHnd = mSubFormHnd
End Function
Have you searched the forums and didn’t find any?
Can you explain what the exact problem is?
What do you need, are you trying to do, and what does not work?
?
Sorry for late reply, I found this one here… https://www.imfiles.com/how-to-get-names-in-paltalk-room-to-a-listbox-t39577/#p95928 ..
Dont forget to update the “NicList Class” and it should work for you….
But, Could you please let us know if you need this for vb.net or vb6? I download the version posted by STRING. Just update the Nickclass list and it should work for you….
i can get it by using PAT or JK’s API SPY 51
but i need to get it by same code string
Yes i tried and get this code, but still doesn’t get names tO list box.
Don’t appear me any error message but the code not work