Is a dynamically updated display table possible?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
autohotkey_avatar
Posts: 27
Joined: 04 Aug 2022, 02:51

Is a dynamically updated display table possible?

Post by autohotkey_avatar » 15 Aug 2022, 22:32

I want to create a display panel in AHK, sort of like this:
image.png
image.png (3.3 KiB) Viewed 306 times
The panel will populate (or depopulate) with rows of data, depending on the various things that the autohotkey script sees when the hotkeys are being pressed. It'll be based on the global variables in the script.

I want this panel to be "always up" from the moment of launching the AHK script, so I can monitor what's going on in the AHK script etc.

Does GUI achieve what I want? I know how to dynamically update rows in the GUI using GuiControl, but I don't know how to dynamically add or remove rows.
Last edited by autohotkey_avatar on 15 Aug 2022, 22:52, edited 1 time in total.

BoBo
Posts: 6564
Joined: 13 May 2014, 17:15

Re: Is a dynamically updated display table possible?

Post by BoBo » 15 Aug 2022, 22:50

Is a dynamically updated display table possible?
Yes.

Gui (of course) > GroupBox/Tab/ListBox/-View
GuiControl
GuiControlGet
Gui, Submit

https://www.youtube.com/watch?v=ZqXOd2NO9Ec&list=PLPI5C2_hIGGyLfU-dyL_dPO4yy8y7m7US :shh: :thumbup:

After you've edited your post meanwhile: https://www.autohotkey.com/docs/commands/ListView.htm#LV_Delete

Post Reply

Return to “Ask for Help (v1)”