I noticed that in my Memo control, a right click popup menu already exists allowing me to cut, paste, and copy. I didn't know that this was the case, however, I still see lots of references to making popup menus and assigning them to controls.
I have a couple of questions regarding this "automatic" popup menu:
1) Does this phenomenon occur across the big three OS's: Linux, Windows and MacOS? I am on Linux Mint 21 and it's working for me.
2) Am I able to use OnContextPopup to execute some code if a "paste" has taken place? I assume I need to get this menu assigned first, but a) maybe it already is? b) if it isn't assigned how I do that? ...and if it is, is it just
If so, then I suppose I need to get the index of the menu item for "Paste." Am I on the right track?
If this is not possible, then I will just make a popup menu and go that route, but since there already is one, I thought I would try and make use of it.