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
- Code: Select all
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
- Code: Select all
atld = FindWindowEx(wtlsplitterwindow, 0&, "atl:004d0600", vbNullString)
atld = FindWindowEx(wtlsplitterwindow, 0&, "atl:004d6640", vbNullString)
And on the top of the command put like
- Code: Select all
On Error Resume Next






