wolfbartels 0 Posted December 6, 2006 I want to put some additional menuitems (child) on an application window (parent).When using$ChildhWnd=GUICreate($text, $SizeX, $SizeY, $PosX, $PosY, $WS_CHILD, -1, $TargethWnd)with $PosY = 0 the childGUI shows inside the application main window,with $PosY < 0 the childGUI is covered by parent window menu barIs there a solution using a Child Window or is an independent window the only way? Share this post Link to post Share on other sites
lod3n 3 Posted December 11, 2006 I've done this here:http://www.autoitscript.com/forum/index.php?showtopic=37709The primary trick is this call:DllCall("user32.dll", "int", "SetParent", "hwnd", $AutoItGuiHandle, "hwnd", $TargetWindowHandle) Hide lod3n's signature Hide all signatures [font="Fixedsys"][list][*]All of my AutoIt Example Scripts[*]http://saneasylum.com[/list][/font] Share this post Link to post Share on other sites