Skip to content

Instantly share code, notes, and snippets.

@tablacus
Created October 13, 2021 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/320e9bce1865a06a53e839b83beff423 to your computer and use it in GitHub Desktop.
Save tablacus/320e9bce1865a06a53e839b83beff423 to your computer and use it in GitHub Desktop.
Select item and go one down - Tablacus Explorer
let nIndex = FV.GetFocusedItem;
FV.SelectItem(nIndex, SVSI_SELECT);
if (++nIndex < FV.ItemCount(SVGIO_ALLVIEW)) {
FV.SelectItem(nIndex, (Ctrl.hwndList && api.SendMessage(Ctrl.hwndList, LVM_GETITEMSTATE, nIndex, LVIS_SELECTED) ? SVSI_SELECT : SVSI_DESELECT) | SVSI_ENSUREVISIBLE | SVSI_FOCUSED);
}
@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment