Hi all.
I have a hex value to a window i found using Spy++.
the value is: 00010010
Thanks to an answer to a question i asked earlier, i have this code:
IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("WINDOW HERE", null); ;
SetParent(hwndf, hwndParent);
this.TopMost = false;
Now, as far as i understand it, IntPtr hwndParent will contain the handle to the window WINDOW HERE. How can i rewrite that line to use my hex handle? I tried:
IntPtr hwndParent = (IntPtr) 0x00010010
But it didnt work. Any ideas?