Hello,
In my GUI I have a combobox that is populated from an SQL query, like select id, name from persons.
In the combobox I want to display the name, but when the person's name is selected from the combobox, I want to retrieve the id relevant to the selected person, so I can use it later in the script.
GUICtrlRead will return the person name, but that will not work as it may not be unique.
How can I read the ID of the selected person?
It's hard to explain, apologies if this is not clear.