When you use some custom controls like QuickPak Professional byCrescent it’s impossible to use the shortcut “Ctrl+V”for “Paste.” “Ctrl+V” allows you to pastetwo times the text of the clipboard. You can eliminate the shortcutfrom the menu list but if you want to show in the menu the string”Ctrl+V” you can use this code in the “main_load”procedure:
menu_cut.Caption = "&Cut" + _ Chr$(9) + "Ctrl+X" menu_copy.Caption = "C&opy" + _ Chr$(9) + "Ctrl+C" menu_paste.Caption = "&Paste" _ + Chr$(9) + "Ctrl+V"