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

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);

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

User-Defined Types:

None.

Notes:

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

Tips & Tricks:

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

Sample Code:

C#:

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

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
Find References
Show Printable Version
Revisions