home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
pascal
/
totdem11
/
demio7.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
432b
|
25 lines
program DemoIOSeven;
{demio7- single field real input}
Uses DOS, CRT,
totIO1, totIO2;
var
Field: RealIOOBJ;
begin
ClrScr;
with Field do
begin
Init(25,14,10);
SetMinMax(-123123,234234100);
Setlabel('Enter any real');
SetValue(35.34);
SetENotation(true);
SetRules(EraseDefault);
Activate;
Writeln;writeln(GetValue);
Done;
end;
end.