Firstly: I am making a program that will, hopefully, insert a panel into a running instance of notepad. This is possible by the following scenarioMyControl.Parent = Controlnow my dillema is that i can get the handle of a running instance of notepad... but that doesn't do me any good since this scenario raises a compiler errorMyControl.Parent = FindWindow(null, "Untitled - Notepad"); //FindWindow returns the handleAnybody know the soloution?