wakillon 404 Posted November 7, 2010 Hi community ! I try since yesterday to add a basic guictrllabel to an other autoit gui created by another process but nothing work... #include <GUIConstantsEx.au3> If WinExists ( "Title1" ) Then $_Handle = WinGetHandle ( "Title1", "" ) ;GUISwitch ( $_Handle ) ;$_WinActivate = WinActivate ( $_Handle, "" ) ; WinWaitActive ( $_Handle, "" ) GUISetState ( @SW_ENABLE, $_Handle ) $_Label1 = GUICtrlCreateLabel ( 'Label1', 10, 10, 200, 20 ) GUICtrlSetState ( $_Label1, $GUI_SHOW ) ; ControlShow ( $_Handle, "", $_Label1 ) GUISetState ( @SW_SHOW , $_Handle ) EndIf How attach this guictrl to the gui ? I have try differents way but unsuccessfully ! Should i modify the style or extended style of the gui ? Or it is impossible ? AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
AdmiralAlkex 126 Posted November 7, 2010 You can't just mess around with external windows like that. Try .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Share this post Link to post Share on other sites