/* file1.rc  resource file */

#include "file1.h"

MYMENU     MENU
BEGIN
    MENUITEM "&Write File",     IDM_WRITE
    MENUITEM "&Read File",      IDM_READ
    MENUITEM "&Append File",    IDM_ADD
    MENUITEM "&Quit",           IDM_QUIT 
END

STRINGTABLE
BEGIN
    S_PROGRAMCAPTION    "File 1 Program"
    S_NOCREATE          "Could not create file TESTFILE.TXT"
    S_FILEERROR         "File Error"
    S_CREATED           "Created file TESTFILE.TXT"
    S_MESSAGE           "Message"
    S_NOREAD            "Could not read file TESTFILE.TXT"
    S_NOOPEN            "Could not open file TESTFILE.TXT"
    S_NOWTRY            "Now try reading file"
END