Skip to content

Instantly share code, notes, and snippets.

@tablacus
Created August 29, 2018 13:51
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/831947fc23f1e6f94eddc323dcfb542c to your computer and use it in GitHub Desktop.
Save tablacus/831947fc23f1e6f94eddc323dcfb542c to your computer and use it in GitHub Desktop.
Move Tab to right - Tablacus Explorer
var TC = te.Ctrl(CTRL_TC);
if (TC && TC.SelectedIndex < TC.Count - 1) {
TC.Move(TC.SelectedIndex, TC.SelectedIndex + 1);
return S_OK;
}
return S_FALSE;
@tablacus
Copy link
Author

image

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