Windows API geting HWND
- by Stacker
im developing a piece of software to inset some text in a richedit of another program the code goes like this :
atlfe = FindWindowEx(wtlsplitterwindow, 0, "atl:0087d7a8" , null);
this is only one line: this works fine , problem is with every release of the program this number ""atl:0087d7a8" changes so i have to use spy++ to get the new one and change it in the code.
the question is , is there is any way i can get that number from code?
by the way im using C#, vs2010
thanks.