Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
20
Task/User-input-Graphical/Delphi/user-input-graphical.delphi
Normal file
20
Task/User-input-Graphical/Delphi/user-input-graphical.delphi
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
program UserInputGraphical;
|
||||
|
||||
{$APPTYPE CONSOLE}
|
||||
|
||||
uses SysUtils, Dialogs;
|
||||
|
||||
var
|
||||
s: string;
|
||||
lStringValue: string;
|
||||
lIntegerValue: Integer;
|
||||
begin
|
||||
lStringValue := InputBox('User input/Graphical', 'Enter a string', '');
|
||||
|
||||
repeat
|
||||
s := InputBox('User input/Graphical', 'Enter the number 75000', '75000');
|
||||
lIntegerValue := StrToIntDef(s, 0);
|
||||
if lIntegerValue <> 75000 then
|
||||
ShowMessage('Invalid entry: ' + s);
|
||||
until lIntegerValue = 75000;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue