- This topic has 6 replies, 4 voices, and was last updated 8 years ago by Chike.
-
AuthorPosts
-
April 13, 2016 at 10:15 pm #186410AdminAdministrator
So this damn paltalk 11.7 build 639 is being a pain with the VB 6.0 programs it has the same index and the API looks the same as 638 and the programs work on 638 but not on 639.
Build 638 APIDim dlggroupchatwindowclass As Long, splitterwindowex As Long, classcpanecontainerex As Long Dim atlae As Long, atlaed As Long, atlaebf As Long Dim richeditw As Long dlggroupchatwindowclass = FindWindow("dlggroupchat window class", vbNullString) splitterwindowex = FindWindowEx(dlggroupchatwindowclass, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) classcpanecontainerex = FindWindowEx(splitterwindowex, 0&, "classcpanecontainerex", vbNullString) atlae = FindWindowEx(classcpanecontainerex, 0&, "atl:00ae4898", vbNullString) atlaed = FindWindowEx(atlae, 0&, "atl:00ae3d28", vbNullString) atlaebf = FindWindowEx(atlaed, 0&, "atl:00ae4bf8", vbNullString) richeditw = FindWindowEx(atlaebf, 0&, "richedit20w", vbNullString)
Build 639 API
Dim dlggroupchatwindowclass As Long, splitterwindowex As Long, classcpanecontainerex As Long Dim atlae As Long, atlaed As Long, atlaebf As Long Dim richeditw As Long dlggroupchatwindowclass = FindWindow("dlggroupchat window class", vbNullString) splitterwindowex = FindWindowEx(dlggroupchatwindowclass, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) splitterwindowex = FindWindowEx(splitterwindowex, 0&, "splitterwindowex", vbNullString) classcpanecontainerex = FindWindowEx(splitterwindowex, 0&, "classcpanecontainerex", vbNullString) atlae = FindWindowEx(classcpanecontainerex, 0&, "atl:00ae4898", vbNullString) atlaed = FindWindowEx(atlae, 0&, "atl:00ae3d28", vbNullString) atlaebf = FindWindowEx(atlaed, 0&, "atl:00ae4bf8", vbNullString) richeditw = FindWindowEx(atlaebf, 0&, "richedit20w", vbNullString)
As you can see it the same shit and the programs dont work. @chike where are you 🙂
April 14, 2016 at 3:15 am #186416ChikeMemberWhat’s an “index”?
I don’t have VB6.0 and im scared to install on my Windows 7
Don’t know if I have installer anyway.April 14, 2016 at 11:58 am #186415AdminAdministratorThis indexes 🙂
Const SendTxtIndex10Beta450 As Integer = 1 Const ChaTxtIndex10Beta450 As Integer = 4
But man I wouldn’t install VB 6 on any PC hehehe I kindna had to reinstall everything when I try it on a Windows 10 PC heheheh
April 26, 2016 at 3:00 pm #186414DepartureMemberUse break points to work out which line returns a null handle, then you can investigate further, each FindWindowEx should return a valid handle of your code is correct. I assume the original post with code was from Pat API spy? why not try another program and see of you get the same results? E.g I uploaded a HwndSpy program a few years ago here which will give the high Hierarchy of each component, use that to compare with what you have, it will even give you the “Index” number
April 27, 2016 at 3:30 am #186413AdminAdministratorYeps I used Pat API, aigh I gonna use the HwndSpy to dig deeper on what’s going on. Thanks 🙂
August 24, 2016 at 8:00 pm #186412MrAloneMemberGood Evening..
I’m using Paltalk 118 b652 and everything is working fine ..
https://www.imfiles.com/topic/paltalk-11-7-programs-vb-6-0-source/
Work like a charm ..
Luv U
August 25, 2016 at 2:49 pm #186411AdminAdministratorYeps, it they weren’t working for build 648, but they good for the new 11.8 heheh so no updates 🙂
-
AuthorPosts
Related
- You must be logged in to reply to this topic.