I have no trouble using function key combinations under XP Home (even in windowed mode). Try the following short program to test if windows is really the problem:
Code:
program test;
uses crt;
var ch,ch2 : char;
begin
repeat
ch:=readkey;
write(byte(ch):4);
if ch=#0
then writeln(byte(readkey):5)
else writeln;
until ch=#27;
end.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.