Click here to Skip to main content
15,885,941 members
Articles / Programming Languages / Visual Basic
Article

A managed "Send To" menu class

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
20 May 20022 min read 71K   2.2K   28   9
An article on a small managed C++ class which gives ability to use the "Send To" feature of Windows Explorer.

Sample Image

Introduction

In one of the applications I have created is a "Send To" menu class using MFC which displays a list of the user's "Send To" extensions and sends a file to the extension the user selects. Now I tried to write a Microsoft .NET assembly and I chose the "Send To" menu class as stuff for the assembly. WARNING: The assembly source code may contain errors. Use the source code of the assembly at your own risk.

Visually the "Send To" menu is a menu containing menu sub-items with the graphical representation of the user's "Send To" extensions. The sub-items can be both with and without bitmaps.

The "Send To" menu class is a descendant of the System.Windows.Forms.MenuItem class and contains the following new public properties and methods:

C#
// [C#] 
public bool EnableBitmap [  get,  set ]
public void Replace ( System.Windows.Forms.MenuItem menuItem , 
                      System.EventHandler eventHandler )
public void Restore (  )
VB
' [Visual Basic] 
Public Property EnableBitmap As Boolean
Public Sub Replace(ByVal menuItem As System.Windows.Forms.MenuItem, _
                   ByVal eventHandler As System.EventHandler)
Public Sub Restore()
EnableBitmapGets or sets a value indicating whether the subitems have bitmaps.
ReplaceReplaces an existing menu item by a Send To menu item
RestoreRestores the menu item which is replaced by the Replace method

You can use the given class in two ways. The first one is to replace an existing menu item and the second one is to add a new "Send To" menu item to the application menu manually. Use the first method if you design an application menu using the designer, and the second one - if you create an application menu manually.

To replace an existing menu item you have to:

  1. Declare a form variable based on the SentToMenuItem class.

    C#
    // [C#]
    private megaBYTE.SendToMenuItem menuItemSendTo;
    VB
    ' [Visual Basic] 
    Friend WithEvents MenuItemSendTo As megaBYTE.SendToMenuItem
  2. Create an instance of the SentToMenuItem class.

    C#
    // [C#]
    menuItemSendTo = new megaBYTE.SendToMenuItem();
    VB
    ' [Visual Basic] 
    Me.MenuItemSendTo = New megaBYTE.SendToMenuItem()
  3. If it is necessary set the EnableBitmap property.

    C#
    // [C#]
    menuItemSendTo.EnableBitmap = false;
    VB
    ' [Visual Basic] 
    Me.MenuItemSendTo.EnableBitmap = False
  4. Call the Replace method.

    C#
    // [C#]
    menuItemSendTo.Replace(menuItemSendToStub, new EventHandler(menuItemSendToStub_Click));
    VB
    ' [Visual Basic] 
    Me.MenuItemSendTo.Replace(Me.MenuItemSendToStub, _
                             New EventHandler(AddressOf Me.MenuItemSendToStub_Click))

The most interesting is point 4. The first parameter of the Replace method is the item to be replaced and the second parameter is a new instance of the EventHandler class. The parameter of the EventHandler class constructor is the click event handler of the replaced item. The click event handler method looks like

C#
// [C#]
private void menuItemSendToStub_Click(object sender, System.EventArgs e)
{
  if (e.GetType() == typeof(megaBYTE.SendToClickEventArgs)) 
  {
    OpenFileDialog dlg = new OpenFileDialog();
    dlg.CheckFileExists = true;
    if (dlg.ShowDialog() == DialogResult.OK)
    {
      megaBYTE.SendToClickEventArgs se = (megaBYTE.SendToClickEventArgs)e;
      se.FileName = dlg.FileName;
    }
  }
}
VB
' [Visual Basic] 
Private Sub MenuItemSendToStub_Click(ByVal sender As System.Object, _
                 ByVal e As System.EventArgs) Handles MenuItemSendToStub.Click
  If TypeOf e Is megaBYTE.SendToClickEventArgs Then
    Dim dlg As New OpenFileDialog()
    dlg.CheckFileExists = True
    If dlg.ShowDialog = DialogResult.OK Then
      Dim se As megaBYTE.SendToClickEventArgs
      se = CType(e, megaBYTE.SendToClickEventArgs)
      se.FileName = dlg.FileName
    End If
  End If
End Sub

If you are going to add the "Sent To" menu manually just use the SendToMenuItem class as the System.Windows.Forms.MenuItem class.

The assembly source code contains parts of the Microsoft SENDTO sample.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalthe dll is not running with 64 bit operating system please help Pin
mhmad19-Jul-09 20:41
mhmad19-Jul-09 20:41 
GeneralMonitor Send to Command Pin
Anubhava Dimri5-May-09 18:46
Anubhava Dimri5-May-09 18:46 
Generali need to send to menu class Pin
syriast2-Aug-06 2:19
syriast2-Aug-06 2:19 
GeneralRe: i need to send to menu class Pin
syriast2-Aug-06 23:29
syriast2-Aug-06 23:29 
GeneralPorting to ToolStripMenuItem Pin
nhlpens663-Jul-06 8:34
nhlpens663-Jul-06 8:34 
GeneralWrite a "Send To" menu class in c# Pin
lin11618-Aug-05 18:36
lin11618-Aug-05 18:36 
GeneralCode Explanation Pin
Chris Keeble26-Apr-05 23:25
Chris Keeble26-Apr-05 23:25 
Generalsendto - mail Pin
YarivNachmias14-Nov-04 17:50
YarivNachmias14-Nov-04 17:50 
GeneralNice :-) Pin
Nish Nishant21-May-02 18:50
sitebuilderNish Nishant21-May-02 18:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.