CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2012
    Posts
    181

    [RESOLVED] How make line insteed item of menu?

    I think such
    AppendMenu(menu_file, MF_STRING, 1002, L"-");
    but it only insert "-". How correctly? Thanks

  2. #2
    Join Date
    Feb 2002
    Posts
    4,640

    Re: How make line insteed item of menu?

    According to the MSDN, it should be:
    Code:
    AppendMenu(menu_file, MF_SEPARATOR, 0, 0);
    Viggy

  3. #3
    Join Date
    Feb 2012
    Posts
    181

    Exclamation Re: How make line insteed item of menu?

    Quote Originally Posted by MrViggy View Post
    According to the MSDN, it should be:
    Code:
    AppendMenu(menu_file, MF_SEPARATOR, 0, 0);
    Viggy
    Thanks.

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