CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    1

    Windows Standard Context Menu

    Does anyone know how to call the standard Windows context menu? I have a listview with a few filenames and want to call the context menu that we get in the explorer etc.

    Thanx :-)


  2. #2
    Join Date
    Apr 1999
    Posts
    11

    Re: Windows Standard Context Menu

    There really isn't a 'standard' context menu. Think about it - "context menu" implies that the menu is based on the current context. So how could you have a "standard" when the context varies all the time??? Anyway - you define your own popup menu, handle WM_CONTEXTMENU (sic) and call TrackPopupMenu()....


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured