home *** CD-ROM | disk | FTP | other *** search
- {
- Turbo-Screen V1.00A testcode generation --- 7-10-1988 20:13:54
- note memory allocations. Increase stack as needed for user programs.
- }
- {$M 30500,0,655360}
- Program menu_generated_code;
-
- Uses CRT,DOS,TSSLIB; { your code needs these units }
- {Uses CRT,DOS,TSSLIB;}
-
- {$I menu.con}
-
- {$I menu.prc}
-
- begin
- BEGGS:='Bacon and Eggs'; { Initialized }
- PCAKES:='Pancakes'; { All }
- CERL:='Cereal'; { These }
- FRT:='Fruit'; { Variables }
- { Next Line: Added screen control set member editoff to sccn}
- sccn:=[cpcall,cvcall,cpret,cvret,upmsg,upvar,editoff];
- menu(
- sccn,
- cerr,
- nfld,
- ret_key,
- BEGGS,
- PCAKES,
- CERL,
- FRT);
-
- end.