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

Thread: Context menu

  1. #1
    Join Date
    Jul 2000
    Posts
    247

    Context menu

    I have a problem displaying underlined symbols in Context Menu under Windows 2000. Everything is fine if I run application under WinNT 4.0.

    CMenu menu;
    if( menu.CreatePopupMenu() )
    {
    menu.AppendMenu(MF_STRING, ID_MY_ID, (LPCTSTR)_T("&MyMenu1") );
    menu.TrackPopupMenu( TPM_LEFTALIGN | TPM_RIGHTBUTTON, 100, 100, this );
    }



  2. #2
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: Context menu

    Hi there, allow me to say that we have a C++ forum right here on this very site. This however is the VB forum, so I don't think you will get as much response as in the C++ forum.

    Tom Cannaerts
    [email protected]

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

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