/* filecomd.rc  resource file  */

#include "filecomd.h"

MYMENU      MENU
BEGIN
    POPUP    "&File"
    BEGIN
        MENUITEM "&Open File",  IDM_OPEN
        MENUITEM "&Save File",  IDM_SAVE
        MENUITEM SEPARATOR
        MENUITEM "&About",      IDM_ABOUT
        MENUITEM "&Quit",       IDM_QUIT 
    END
END

STRINGTABLE
BEGIN
    S_PROGRAMCAPTION    "Filecomd - A Simple Editor Using Common File Dialogs"
    S_FILENOTOPEN       "Could Not Open File"
    S_NOTALLOC          "Could not allocate memory."
    S_MEMERROR          "Memory Error"
    S_ABOUTTEXT         "Simple Editor Application"
    S_ABOUTCAPTION      "File 2 Program"
    S_FILENOTCREATE     "Could not open or create file."
    S_FILEOPEN          "Open a file."
    S_FILEWRITE         "Write data to a file."
END