- This topic has 22 replies, 8 voices, and was last updated 19 years ago by UDG Clan.
-
AuthorPosts
-
January 27, 2005 at 1:54 pm #189756AdminAdministrator
Hey people this what I am wondering, how can I make a paltalk program work for all paltalk versions, This mostly affects the programs with chatsend function on them, for example this is the line we changing right now every time paltalk upgrades
atld = FindWindowEx(wtlsplitterwindow, 0&, "atl:004d0600", vbNullString)
So can something like this be done where you put the line code for each paltalk version one after another like this
atld = FindWindowEx(wtlsplitterwindow, 0&, "atl:004d0600", vbNullString)
atld = FindWindowEx(wtlsplitterwindow, 0&, "atl:004d6640", vbNullString)
And on the top of the command put like
On Error Resume Next
❓
January 27, 2005 at 3:35 pm #189778UDG ClanMemberi dont think thats how you do it
January 27, 2005 at 4:23 pm #189777Pure-GoldMemberThe thing that you need to do is like in my programs.
I’ve made PalSet.exe that you run and detect you object class
it will update the information in you program.Very easy to do.
January 27, 2005 at 5:38 pm #189776AdminAdministrator🙂 okie let me check on that, any tips u can give us
like would it be some sort of exe file that will enter something to your registry or somehow update the program
🙂
January 27, 2005 at 5:47 pm #189775Pure-GoldMemberThat exactly what my PalSet.exe does. 😀
January 28, 2005 at 4:06 am #189774Project SPMembertherez alots of ways to find the child of the wtlsplitterwindow parent
usin gw_child i guess. dono 😕
but u can also use the “vbnullstring” inplace of the “alt:______”anything = FindWindowEx(wtlsplitterwindow, 0&, vbNullString, vbNullString)
January 28, 2005 at 12:27 pm #189773AdminAdministratorAigh guys thanks I check on those lol everyday I learn new things 🙂
March 17, 2005 at 4:36 pm #189772DepartureMemberinteresting subject the best way i know how to overcome the paltalk version problem is to make it a wildcard :O)
Public Function FindWindowWild(sWild As String, Optional bMatchCase As Boolean = True) As Long
sPattern = sWild
If Not bMatchCase Then sPattern = UCase(sPattern)
EnumWindows AddressOf EnumWinProc, bMatchCase
FindWindowWild = hFind
End FunctionThis is what i used in older paltalk versions, I have’nt really looked into the new paltalk 7 as i have’nt been on paltalk for a long time
March 17, 2005 at 7:55 pm #189771AdminAdministrator🙂 nice code there i will try out in one of my programs, cause is crazy always updating the programs 🙂
April 18, 2005 at 6:28 am #189770xavier01Memberif you switched its to proto then you dont have to worry about chat sends that way, whoever has the proto dll that is making chat programs for pal, you can use that.
You would actually login the program to paltalk and wouldnt need paltalk up at all just do direct sends through protocol into room, then you would only have to update when they change there protocol or server side software.
April 18, 2005 at 2:19 pm #189769AdminAdministratordamn that would be great, but u think is posible, i mean to send messeges without actually bein in paltalk
April 18, 2005 at 11:51 pm #189768xavier01Memberyea used to make proto for yahoo, but there was a vinky.dll he had all the proto stuff in there already so everyone used his dll. but yea its easy to do hard part is the dll, if there are any programs that can actually login to paltalk then they have a dll to read the proto
April 19, 2005 at 12:24 am #189767AdminAdministratorAigh thas something cool to check on 🙂
April 20, 2005 at 8:59 am #189766DepartureMemberOkay this is an example to send text to anypaltalk version…well not any but i have included versions 553, version 7 and version 8, you could add to this or simple just use the .bas with any of your programs to send text to the correct version of paltalk
Please people send feed back and idea’s , if all work together on ideas im sure
future programs will benifit.April 20, 2005 at 2:20 pm #189765AdminAdministratorhey but u have to choose the option, is there anyway u can make it auto, without chooseing the option to which paltalk u have at that time,
🙂 if its posible
-
AuthorPosts
Related
- You must be logged in to reply to this topic.