Keyboard Navigation and ListBox

Hello,
I was wondering if it is possible to navigate to the headers of a listbox and sort those headers by using keyboard navigation, my current attempts have not worked. Thanks!

you can sort by keyboard numbers

Function KeyDown(Key As String) As Boolean Select case key case "0" me.SortedColumn = 0 me.sort case "1" me.SortedColumn = 1 me.sort End Select Return true End Function

I’ve created a window with a ListBox that is filled with the original ListBox Header.
I added in that window buttons to move headers,
I added buttons to change / rename / whatever the selected header (using some TextField)

Then i added code in a button to reflect the changes in the original header and close that window.

Is this the answer ytou’re awaiting ?