I am using this code:
IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("ProgMan.exe", null);
SetParent(hwndf, hwndParent);
However I get an error. The error says :
The call is ambiguous between the following methods or properties: 'HyperBox.Form1.FindWindow(string, string)' and 'HyperBox.Form1.FindWindow(string, string)'
How can I fix this? Thanks.