getting windowhandle of multiple controls at a time
i previously post this question with no answer :(
i m associated with the project which required to process more then one controls at the time.
and we r using SendMessage api for that process. the problem is that we can give window handle of only one control to this api and not all. there is one solution in VC++ i suppose but i didnt able to find the solution in VB.
VC++ coding will be like this one
CWnd myWnd;
myWnd.Attach(hWnd1);
myWnd.Attach(hWnd2);
myWnd.Attach(hWnd3);
....... what ever process we have to execute
myWnd.Detach();
can any one solve my problem or can give vb code on the above vc++ code???
thanx in advance.
firoz