Is there any way to add new items to the controls context menu?
The ContextMenuItems property specifies a list of items that control adds to its context menu when it is invoked. The AllowContextMenu property specifies whether the control displays its context menu when user right click the control. The list of items is separated by ‘New Line’ (\n or chr(10)) or ‘Carriage return’ (\r or chr(13) character. The ExecuteContextMenu event is fired when user selects an user item from the control’s context menu. A separator item is added if the caption of the item is empty. The following sample adds few items to the control’s context menu: Private Sub Edit1_ExecuteContextMenu(ByVal Item As String, ByVal Position As Long) Debug.Print Position & ” ” & Item End Sub Private Sub Form_Load() With Edit1 .Load “d:\temp\lappy\test.txt” .