markreflex
Joined: 12 Feb 2008 Posts: 50
|
Posted: Fri May 23, 2008 12:18 am Post subject: ListView deselection problem |
|
|
I am having a problem with the ListView. When i select any selection it selects fine but when i deselect any it doesn't. How can i improve my code so it deselects and removes the variable on the last selection?
| Code: |
Gui, Listview, list_LV
if A_GuiEvent = Normal
{
FocusedRowNumber := LV_GetNext(0, "F")
if not FocusedRowNumber
return
LV_GetText(Filename, FocusedRowNumber, 1)
}
return
|
|
|