Page 413 - C++
P. 413

delay(10);
               }
               delay(1000);
               setcolor(5);
               settextstyle(1,0,4);
               outtextxy(155,142,"COMPUTER");
               outtextxy(320,155,"PROJECT");
               delay(1000);
               settextstyle(7,0,4);
               for(i=0;i<=6;i++)
               {
                   if(i%2==0)
                   {
                      setcolor(2);
                      outtextxy(220,200,"JUMBLE WORDS");
                      delay(400);
                      setcolor(1);
                      outtextxy(220,200,"JUMBLE WORDS");
                   }
                   else
                   {
                      setcolor(2);
                      outtextxy(220,300,"WORD WRAP");
                      delay(800);
                      setcolor(1);
                      outtextxy(220,300,"WORD WRAP");
                   }
               }
               setcolor(5);
               outtextxy(220,200,"JUMBLE WORDS");
               outtextxy(220,300,"WORD WRAP");
               getch();
        }

        //*********************************************************************
        void modemenu()              //DISPLAYING THE MODE SELECTION MENU PAGE
        {
            clrscr();
            char ch;
            do
            {
              cleardevice();
              setbkcolor(15);
              settextstyle(7,0,5);
              setcolor(12);
              outtextxy(50,50,"--- MAIN MENU PAGE ---");
              outtextxy(70,150,"  A. ADMIN MODE.");
              outtextxy(70,250,"  B. GAME MODE.");
              outtextxy(70,350,"  C. EXIT");
              settextstyle(8,0,3);
              setcolor(2);
              outtextxy(70,400," ENTER YOUR CHOICE(A-C): ");
              ch=getch();
              ch=toupper(ch);
   408   409   410   411   412   413   414   415   416   417   418