开发者

Delphi 2010 virtual keyboard, start with CapsLock on?

开发者 https://www.devze.com 2023-02-10 20:07 出处:网络
Delphi 2010 Enterprise How can I automatically turn the CapsLock on when the virtual keyboard is dis开发者_如何学Pythonplayed.Try this on your FormCreate:

Delphi 2010 Enterprise

How can I automatically turn the CapsLock on when the virtual keyboard is dis开发者_如何学Pythonplayed.


Try this on your FormCreate:

procedure TForm1.FormCreate(Sender: TObject);
var
  MyKeys: array of tagInput;
begin
  setLength(MyKeys, 2);
  MyKeys[0].Itype:=INPUT_KEYBOARD;
  MyKeys[0].ki.wVk:=VK_CAPITAL;
  MyKeys[0].ki.wScan:=0;
  MyKeys[0].ki.dwFlags:=4;
  MyKeys[0].ki.time:=0;
  MyKeys[0].ki.dwExtraInfo:=0;

  MyKeys[1].Itype:=INPUT_KEYBOARD;
  MyKeys[1].ki.wVk:=VK_CAPITAL;
  MyKeys[1].ki.wScan:=0;
  MyKeys[1].ki.dwFlags:=4+2;
  MyKeys[1].ki.time:=0;
  MyKeys[1].ki.dwExtraInfo:=0;
  SendInput(2, MyKeys[0], sizeof(tagInput));
end;

You can find more info on msdn

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号