Janilabo

VKeyDown/Up

Oct 10th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.24 KB | None | 0 0
  1. var
  2.   i, l: Integer;
  3.   c: string;
  4.  
  5. begin
  6.   c := 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
  7.   l := Length(c);
  8.   for i := 1 to (l - 1) do
  9.   begin
  10.     VKeyDown(Ord(c[i]));
  11.     Wait(1);
  12.     VKeyUp(Ord(c[i]));
  13.   end;
  14. end.
Advertisement
Add Comment
Please, Sign In to add comment