IDR_MENU is defined in my resource file I basically took the menu for the MainFrame and wanted to use it for the Dialog Opening up The resource editor I am beginning to think when you view a dialog with menu it wont display it There is a only a way to view the menu by itself once I get my code going and do a ShowWindow for the Dialog i'll see if it displays the menu
IDR_MAINFRAME MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit", ID_APP_EXIT
END
POPUP "&Edit"
BEGIN
MENUITEM "&Undo\tCtrl+Z", ID_EDIT_UNDO
MENUITEM SEPARATOR
MENUITEM "Cu&t\tCtrl+X", ID_EDIT_CUT
MENUITEM "&Copy\tCtrl+C", ID_EDIT_COPY
MENUITEM "&Paste\tCtrl+V", ID_EDIT_PASTE
END
POPUP "&View"
BEGIN
MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
END
POPUP "&ProgDebug"
BEGIN
MENUITEM "Program Debug", ID_DEBUG
END
POPUP "&Asidlist"
BEGIN
MENUITEM "Address Space List", ID_ASID
END
POPUP "&Help"
BEGIN
MENUITEM "&About DBGR...", ID_APP_ABOUT
END
END