I could show code, but there be no point here.
All I wish to know is, when someone types a certain string in, can i make the program start a download when they press enter after the typing?
something like this-
[all var's are already declared]
[f3 = what they typed]
if f3 < 10 then
begin
writeln('Wrong key');
goto 1;
end;
if f3 = 10 then
begin
<I WANT TO PUT A DOWNLOAD LINK HERE>
goto 2;
end;
if f3 > 10 then
begin
writeln('Wrong key');
goto 1;
end;
2:
end.