Hi all
In my vba macro I have set it so only certain cells can be selected (the ones within the brown border)
I have turned off cell right-click context menu
I have disabled drag and drop etc. (Application.CellDragAndDrop = False)
I thought I had unwanted user-mouse fiddling cracked, until (acting as a user would), I selected two (or more) cells that contained data (strings in this case).
Then this little beastie appeared at the bottom-right edge of the selection:
Clicking on it, produced this:
I can't seem to find a reference to it anywhere, but not knowing what it's called doesn't help.
How can I prevent this from appearing please?
The sheet is locked, with only Select unlocked cells selected
I have also set the scroll area:
goXsTT.ScrollArea = "C3:" & UTColumnNumToAlpha(giTableEWColQty + 2) & _
Trim(CStr(giTableNSRowQty + 2))
Tip: Setting the scroll area also makes cells outside of that area un-selectable
Appreciate any help, thanks in advance.
In my vba macro I have set it so only certain cells can be selected (the ones within the brown border)
I have turned off cell right-click context menu
I have disabled drag and drop etc. (Application.CellDragAndDrop = False)
I thought I had unwanted user-mouse fiddling cracked, until (acting as a user would), I selected two (or more) cells that contained data (strings in this case).
Then this little beastie appeared at the bottom-right edge of the selection:
Clicking on it, produced this:
I can't seem to find a reference to it anywhere, but not knowing what it's called doesn't help.
How can I prevent this from appearing please?
The sheet is locked, with only Select unlocked cells selected
I have also set the scroll area:
goXsTT.ScrollArea = "C3:" & UTColumnNumToAlpha(giTableEWColQty + 2) & _
Trim(CStr(giTableNSRowQty + 2))
Tip: Setting the scroll area also makes cells outside of that area un-selectable
Appreciate any help, thanks in advance.