Ads 468x60px

Smaller time frame always follow the bigger time frame. It's better wait be patience to enter in position than risk with BIG SL. Having strong trading discipline and taking losses when necessary is a sign of serious trading approach
Subscribe:

Labels

Saturday, August 11, 2012

FIND OUT IF THE CAPS LOCK IS ON


Here's a function you can use to find out if the CAPS LOCK is on: 
function IsCapsLockOn : boolean;
begin
  Result := 0 <>
    (GetKeyState(VK_CAPITAL) and $01);
end;


comments