Search the Community
Showing results for tags '_GUICtrlListView_Create'.
-
Hi all, is there a way to disable a listview created with _GUICtrlListView_Create? GUICtrlSetState($g_hListView,@SW_DISABLE) does not work, reading arround the form give me the idea that I need to use winapi but I have no clue how to disable it that way thanks #include <GUIConstantsEx.au3> #include <GuiImageList.au3> #include <GuiListView.au3> $hGUI=GUICreate("ImageList Create", 400, 300) $g_hListView = _GUICtrlListView_Create($hGUI, "", 2, 2, 394, 268) GUISetState(@SW_SHOW) _GUICtrlListView_AddColumn($g_hListView, "a", 120) _GUICtrlListView_AddColumn($g_hListView, "b
-
Having problems with GUICtrlCreateListView() and _GUICtrlListView_Create(). But if I use either of them, sorting (by clicking the header to arrange the list) using GUICtrlCreateListView() it works. But for _GUICtrlListView_Create() it won't. Same thing happens for editing the list using GUICtrlCreateListView(). ;GUICtrlCreateListView() sorting works. Editing fails. #include <GuiEdit.au3> #include <GUIListViewEx_Mod.au3> #include <GuiImageList.au3> #include <String.au3> #include <Misc.au3> #include <File.au3> #include <Timers.au3> #include
-
Greetings, I know this subject has been beaten to death and many people have gotten close, but I have not been able to find an actual resolution so far. I have a GUI that uses tabs and on the first tab, I have a _GUICtrlListView_Create, and at first, no matter what tab you changed it to, that control would show right through anything else. I was able to fix it by hiding the control much like the Dev team advised when handling tabs. My only concern is the control has a delay when hiding, and when coming back when I switch tabs. Has anyone been able to find a way around this? I am includ
-
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 _
-
Hi guys, i have some problem to make the output of a _GUICtrlListView_Create: #include <GUIConstantsEx.au3> #include <GuiListView.au3> #include <GuiImageList.au3> #include <WindowsConstants.au3> $Number = 0 _Main() Func _Main() Local $GUI, $hImage $GUI = GUICreate("(UDF Created) ListView Create", 400, 300) $hListView = _GUICtrlListView_Create($GUI, "", 2, 2, 394, 268) _GUICtrlListView_SetExtendedListViewStyle($hListView, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_SUBITEMIMAGES)) GUISetState() _GUICtrlListView_InsertColumn($hListView, 0, "Column 1", 100) _