GPinzone Posted June 4, 2018 Share Posted June 4, 2018 I have a disc burning status window that's a List View. I refresh it every two seconds to get the latest info. However, I'd rather not delete (_GUICtrlListView_DeleteAllItems) and repopulate all the entries every two seconds. Is there a way to read the entries in the list view and compare them with the new values? Gerard J. Pinzonegpinzone AT yahoo.com Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted June 4, 2018 Moderators Share Posted June 4, 2018 GPinzone, I would almost guarantee that deleting all the entries and reloading will be faster than a loop reading the current entry, comparing it to the new value and then rewriting the entry. In this quick example script it is a factor of 10 times slower to do the compare: expandcollapse popup#include <GUIConstantsEx.au3> #include <GuiListView.au3> Global $aList[100] $hGUI = GUICreate("Test", 500, 500) $cLV = GUICtrlCreateListView("Data stored", 10, 10, 400, 400) For $i = 0 To 99 GUICtrlCreateListViewItem("Item " & $i, $cLV) $aList[$i] = $i Next $cAll = GUICtrlCreateButton("All delete", 10, 450, 80, 30) $cComp = GUICtrlCreateButton("Compare", 250, 450, 80, 30) GUISetState() ; Alter a single element $aList[9] = 100 While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $cAll $nBegin = TimerInit() _GUICtrlListView_DeleteAllItems($cLV) For $i = 0 To 99 GUICtrlCreateListViewItem("Item " & $i, $cLV) Next ConsoleWrite(TimerDiff($nBegin) & @CRLF) Case $cComp For $i = 0 To 99 If _GUICtrlListView_GetItemText($cLV, $i) <> "Item " & $aList[$i] Then _GUICtrlListView_SetItemText($cLV, $i, "Item " & $aList[$i]) EndIf Next ConsoleWrite(TimerDiff($nBegin) & @CRLF) EndSwitch WEnd M23 GPinzone 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
GPinzone Posted June 4, 2018 Author Share Posted June 4, 2018 What I ended up doing was to keep an array to cache values of the list view and compare it with the "new" array results. If they've changed, I redraw the list view. Gerard J. Pinzonegpinzone AT yahoo.com Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted June 4, 2018 Moderators Share Posted June 4, 2018 GPinzone, Sounds a very sensible solution. M23 GPinzone 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
pixelsearch Posted October 19, 2019 Share Posted October 19, 2019 (edited) On 6/4/2018 at 6:53 PM, Melba23 said: In this quick example script it is a factor of 10 times slower to do the compare: Yesterday, I did PM Melba23, telling him I didn't agree with the result of his test and explained him why. He answered me right now, writing : "Your logic seems fine to me - go ahead and post a correction. And in future you do not need my permission to do so." Imho there won't be any future because finding something wrong in any Melba's script is harder than looking for a needle in a haystack. And God only knows how many MB23's scripts I read and tested since March 2018 (when I became a Forum member) as all his scripts run fluently and are a big help. So the problem in the script above is that one crucial line is missing, because TimerInit() isn't reinitialized when we click on the "Compare" button, so the results of the test are really biased. As soon as we add the missing line, it shows constantly that "Compare" is 5 times faster than "Delete All". Here is the amended script : expandcollapse popup#include <GUIConstantsEx.au3> #include <GuiListView.au3> Global $aList[100] $hGUI = GUICreate("Test", 500, 500) $cLV = GUICtrlCreateListView("Data stored", 10, 10, 400, 400) For $i = 0 To 99 GUICtrlCreateListViewItem("Item " & $i, $cLV) $aList[$i] = $i Next $cAll = GUICtrlCreateButton("All delete", 10, 450, 80, 30) $cComp = GUICtrlCreateButton("Compare", 250, 450, 80, 30) GUISetState() ; Alter a single element $aList[9] = 100 While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $cAll $nBegin = TimerInit() _GUICtrlListView_DeleteAllItems($cLV) For $i = 0 To 99 GUICtrlCreateListViewItem("Item " & $i, $cLV) Next ConsoleWrite(TimerDiff($nBegin) & @CRLF) Case $cComp $nBegin = TimerInit() ; this important line was missing <================ For $i = 0 To 99 If _GUICtrlListView_GetItemText($cLV, $i) <> "Item " & $aList[$i] Then _GUICtrlListView_SetItemText($cLV, $i, "Item " & $aList[$i]) EndIf Next ConsoleWrite(TimerDiff($nBegin) & @CRLF) EndSwitch WEnd Thanks MB, because you could have amended your own script by yourself. Bravo for your fair-play Edited October 19, 2019 by pixelsearch Lion66 1 Link to comment Share on other sites More sharing options...
LarsJ Posted October 19, 2019 Share Posted October 19, 2019 The right way to update a listview on-the-fly is to use a virtual listview. Controls, File Explorer, ROT objects, UI Automation, Windows Message MonitorCompiled code: Accessing AutoIt variables, DotNet.au3 UDF, Using C# and VB codeShell menus: The Context menu, The Favorites menu. Shell related: Control Panel, System Image ListsGraphics related: Rubik's Cube, OpenGL without external libraries, Navigating in an image, Non-rectangular selectionsListView controls: Colors and fonts, Multi-line header, Multi-line items, Checkboxes and icons, Incremental searchListView controls: Virtual ListViews, Editing cells, Data display functions Link to comment Share on other sites More sharing options...
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