cjwares
Dec 12th, 1999, 03:21 PM
I am trying to write a prog for AIM, but i am unable to do it. I have no idea how to get AIM and my prog to communicate. Any suggestions?
jtaylorlb
Dec 13th, 1999, 12:17 PM
Hi,
I have faced this problem before. A wonderful API that windows includes is the SendMessage command. With this you can click buttons, get active/online users, check active logged on user, and do just about anything you need to do.
The SendMessage command is used in conjunction with many others such as FindWindow, FindWindowEx, and for getting active windows there is GetWindowText and GetWindowTextLength. Along with the API calls use the WM_* declarations. All of them are listed in the API viewer with VB.
If you need more information consult: www.msdn.microsoft.com (http://www.msdn.microsoft.com) (Microsoft Developer's Network)
or VB-World also has some examples.
Hope this helps!
JT
cjwares
Dec 13th, 1999, 12:23 PM
thanx a lot. i needed that! :)