Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

InsertMenu (user32)
 
.
Summary
Summary

C# Signature:

[DllImport("user32.dll")]
static extern bool InsertMenuItem(IntPtr hMenu, uint uItem, bool fByPosition,
   [In] ref MENUITEMINFO lpmii);

VB Signature:

   <DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
   Friend Shared Function InsertMenuItem(ByVal hMenu As IntPtr, ByVal uItem As Integer,
   ByVal fByPosition As Boolean, ByRef lpmii As MENUITEMINFO) As Boolean
   End Function

C#:

[DllImport("user32", SetLastError = true, CharSet = CharSet.Auto)]
static extern bool InsertMenu(IntPtr hmenu, uint position, uint flags,
       uint item_id, [MarshalAs(UnmanagedType.LPTStr)]string item_text);

User-Defined Types:

None.

VB

<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Friend Shared Function InsertMenu(ByVal hMenu As IntPtr, ByVal uPosition As Integer,
       ByVal uFlags As Integer, ByVal uIDNewItem As Integer,
       <MarshalAs(UnmanagedType.LPTStr)> ByVal lpNewItem As String) As Boolean
End Function

Notes:

User-Defined Types:

None.

Tips & Tricks:

Please add some!

Notes:

Be sure to always set SetLastError in your Win32 imports. The sample code below shows how you can make use of it.

Sample Code:

Please add some!

Tips & Tricks:

Without the CharSet attribute flag, the WinAPI may not know which underlying InsertMenu to call (the A version or the W version).

Alternative Managed API:

Do you know one? Please contribute it!

Sample Code:

C#:

if (!InsertMenu(hmenu, position++,
       (uint)(MF.BYPOSITION | MF.SEPARATOR), id++, "Menu Item"))
    throw new Win32Exception(Marshal.GetLastWin32Error());

Documentation

Alternative Managed API:

None.

Documentation
InsertMenu on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions