home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / xlisp21w / sources / xsdemo.rc < prev    next >
Encoding:
Text File  |  1993-02-28  |  528 b   |  25 lines

  1. /**** xsdemo.rc
  2.     Resource script for the XLisp client demo
  3.                 *****/
  4.  
  5. #include    <windows.h>
  6. #include    "xsdemo.h"
  7.  
  8. Command DIALOG 10,10,112,58
  9.     STYLE WS_POPUP | WS_DLGFRAME
  10. {
  11.   EDITTEXT               IDD_FNAME,    2, 12,100, 12,ES_AUTOHSCROLL
  12.   DEFPUSHBUTTON "&Ok"          IDOK,    11, 34, 40, 12,WS_GROUP
  13.   PUSHBUTTON    "Cancel", IDCANCEL,    61, 34, 40, 12,WS_GROUP
  14. }
  15.  
  16. XC MENU
  17. {
  18.   POPUP "&Command"
  19.   {
  20.     MENUITEM "&Issue Lisp command"    IDM_COMMAND
  21.     MENUITEM SEPARATOR
  22.     MENUITEM "E&xit",            IDM_EXIT
  23.   }
  24. }
  25.