Hey guys
Quick question:
In this GUI the listview is created from items in test.txt
I would like my "Get Info" button to show the actual text of the item that is selected. So far I have been able to make it show the number of the item.
What is the last missing puzzle here?
#include <GUIConstantsEx.au3>
#include <GUIListViewEx.au3>
Global $MainGUI_ManageItemList
Global $File = "test.txt"
Global $FileToArray = FileReadToArray("test.txt")
Call ("MainGUI_ManageItemList")
Func MainGUI_ManageItemList()