Jump to content

Attach a guictrl to an other autoit gui


 Share

Recommended Posts

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.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...