On 20 October 2005, Daniel Keene wrote: > Hi folks, > I am currently working on creating windows manually and have found some good > tutorials to help me. I have not been able to find a way to put in a > separator bar > between the parts of a popup. Does anyone know the command? I'm sure it's > something simple, but I have not seen it yet. > > Thanks, > > Dan
How about something along the lines of: CMenu menuPopup; menuPopup.CreatePopupMenu (); menuPopup.AppendMenu (MF_STRING, ID_DELETE, "&Delete data"); menuPopup.AppendMenu (MF_SEPARATOR); menuPopup.AppendMenu (MF_STRING, ID_CHANGE, "&Change data"); This gives a pop up menu with two items "Delete data" and "Change data" and a separator bar in between. Anand Shraddhan [Non-text portions of this message have been removed] ------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/EbFolB/TM --------------------------------------------------------------------~-> >-----------------------------------------~-~> CHECK THE ARCHIVE BEFORE POSTING!!!! Archive is available at http://www.eScribe.com/software/C-Paradise/ >------------------------------------------_-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/C-Paradise/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
