home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
TOT11.ZIP
/
TOTDEM11.ZIP
/
DEMIO6.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
442b
|
23 lines
program DemoIOSix;
{demIO6 - single string field input}
Uses DOS, CRT,
totFAST, totIO1, totIO2, totSTR;
var
Field: StringIOOBJ;
begin
with Field do
begin
Init(40,5,10);
SetLabel('Field (StringIOOBJ)');
SetCase(upper);
SetValue('hello');
SetRules(EraseDefault+JumpIfFull);
clrscr;
Activate;
writeln;writeln('You entered ',GetValue);
Done;
end;
end.