i used consts
- Code: Select all
Const GW_Child As Long = 5
example:
blahh2 = FindWindowEx(blahh1 , 0& , wtl_Splitterwindow , vbnullstring)
blahh3 = GetWindow(Blahh2 , GW_Child)
'This is normally where the atl### control is
I came across this consts by mistake, I was originally researching some other API's and found this little gem, I found a few others also, danmm there are a lot of APi's that are not knowen very much.
What this pretty much does , is it will get the child control of wtl_Splitterwindow, and ofcause the child control of wtl_Splitterwindow is ATL#####, So in other words it will get the unknowen handel to the child control (hope that makes sence)
the exmple above is not real code i just typed it off the top of my head for an example, but you get the idea and you know the rest of the code needed to complete your own function for paltalk
If you want i'll post an example code