Jump to content

Search the Community

Showing results for tags 'MDI-Childs'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello, I need help in the following case: I have a main GIU and 20 or more Childs. I want to put a ListView on each Child. For generating the Childs and the ListViews I use a FOR NEXT. The issue: 20 or more Childs will be created. But only 16 ListViews will be placed in the first 16 Childs. I tried to reach the childs above the 16th instance with ControlMove to proof to have the right Handle. The Handle works. So I suppose that _GUICtrlListView_Create(HWND, ..) doesnt manage HDNDs for Childs 16 + correct. Does anyone has an Idea what is there the problem? Greetings Andrew _____code snippets below: Creating Child===================================== Local $modElem_window Local $left_Next = 0 Local $title For $i = 1 To 20 $modElem_window = 0 $title = String($i) ;~ If $i = 17 Then $title = -1 ;~ If $i = 18 Then $title = -2 $modElem_window = GUICreate($title, 50, 300, $left_Next, 10, BitOr($WS_POPUP, $WS_BORDER)) GUICtrlSetResizing(-1, $GUI_DOCKALL) GUISetBkColor(0x9900D1) Creating List===================================== Local $sHeaderText = "Done|CMD|RUN-Mode|ACK 2|ACK 1" $List_CMDs_Modul_1 = _GUICtrlListView_Create($modElem_window, $sHeaderText, -1, -1, -1, -1) _GUICtrlListView_SetExtendedListViewStyle($List_CMDs_Modul_1, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_INFOTIP, $LVS_EX_SUBITEMIMAGES, $LVS_EX_DOUBLEBUFFER)) ; $LVS_EX_SUBITEMIMAGES GUICtrlSetResizing(-1, $GUI_DOCKALL) _GUICtrlListView_SetColumnOrder($List_CMDs_Modul_1, "1|2|3|4|0")
×
×
  • Create New...