home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_02 / 8n02086a < prev    next >
Text File  |  1990-03-01  |  1KB  |  32 lines

  1.             Listing 2
  2.  
  3.  
  4. struct _scrn    {
  5.         char    *chrs;      /*pointer to screen text*/
  6.         char    cw;        /*column where text appears*/
  7.         char    rw;        /*row where text appears*/
  8.         char    att;        /*attribute in which text appears*/
  9.         };
  10.  
  11. struct _scrn screen_mainmenu[]={
  12.  
  13.     {"╔════════════════════════════════════╗",21,6,31},
  14.     {"║                                    ║",21,7,31},
  15.     {"║        Grade Book Main Menu        ║",21,8,31},
  16.     {"║                                    ║",21,9,31},
  17.     {"║        1) Scan Grades              ║",21,10,31},
  18.     {"║        2) Edit/View Grades         ║",21,11,31},
  19.     {"║        3) Print Grade Book         ║",21,12,31},
  20.     {"║        4) Scan Names               ║",21,13,31},
  21.     {"║        5) Print Rosters            ║",21,14,31},
  22.     {"║        6) Other Print Functions    ║",21,15,31},
  23.     {"║        7) Set Teacher Information  ║",21,16,31},
  24.     {"║        8) Drop Lowest Grade        ║",21,17,31},
  25.     {"║        9) Exit                     ║",21,18,31},
  26.     {"║                                    ║",21,19,31},
  27.     {"║     For help, press <Alt><H>.      ║",21,20,31},
  28.     {"╚════════════════════════════════════╝",21,21,31},
  29.     {"\0",0,0,0}
  30.     };
  31.  
  32.