home *** CD-ROM | disk | FTP | other *** search
- rem name: page3.cdl
-
- rem date: 011288 simon izraelevitz
-
- rem task: shows on the screen page3.cdl menu
-
- rem -----------------------------------------------
-
- rem Display page3 menu
-
- cls
- window -hoffset, -voffset,columns*hinc +2*hoffset, rows*vinc + 4*voffset
- mode draw
-
- :hlines
- i = -1
- :hloop
- i = i + 1
- vline hstart, i*vinc + vstart, 0.0, columns*hinc, i*vinc + vstart, 0.0,, 15
- if (i == rows)
- goto vlines
- goto hloop
-
- :vlines
- i = -1
- :vloop
- i = i + 1
- vline i*hinc + hstart, vstart, 0.0, i*hinc + hstart, rows*vinc, 0.0,, 15
- if (i == columns)
- goto text
- goto vloop
-
- :text
- rem column - 1 row - 1 CADL program
-
- text htx + 0 * hinc , vtx + 0 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 1 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 2 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 3 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 4 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 5 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 6 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 0 * hinc , vtx + 7 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 0 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 1 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 2 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 3 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 4 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 5 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 6 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 1 * hinc , vtx + 7 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 0 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 1 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 2 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 3 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 4 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 5 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 6 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 2 * hinc , vtx + 7 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 0 * vinc , ' MORE ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 1 * vinc , ' HELP ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 2 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 3 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 4 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 5 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 6 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
- text htx + 3 * hinc , vtx + 7 * vinc , ' ' , 0.0 , vtx ,\
- pageasp , , 15 , , 0
-
- rem page title
- text hinc , vtx + 8 * vinc - vinc / 6 ,\
- 'PROGRAMS MENU PAGE 3' , 0.0 , vtx , pageasp , , 15 , , 0
-
- retrflag = 3
- chain utility3.cdl
-