CODE:
{
a:
string str="CapsLock pushed!";
string str1="SPACEBAR pushed!";
enabletimer(3);
CREATE_TIMER(3, 3000);
{
if (getkeystate(SPACE)==1);
{
beep(1000,500);
messagebox(str1);
goto end;
}
if (getkeystate(20)==1);
{
beep(500,500);
messagebox(str);
goto end;
}
else
{
goto a;
}
}
goto a;
end:
}
{
a:
string str="CapsLock pushed!";
string str1="SPACEBAR pushed!";
enabletimer(3);
CREATE_TIMER(3, 3000);
{
if (getkeystate(SPACE)==1);
{
beep(1000,500);
messagebox(str1);
goto end;
}
if (getkeystate(20)==1);
{
beep(500,500);
messagebox(str);
goto end;
}
else
{
goto a;
}
}
goto a;
end:
}
Не работает, то есть при нажатом пробеле или капслоке ничего не происходит.
Где ошибка?