wakillon Posted November 7, 2010 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.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
AdmiralAlkex Posted November 7, 2010 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now