function TFrm_main.InputChar(str: string): Boolean;
var
i : integer;
c : byte;
begin
for i := 1 to Length(str) do
begin
c := VkKeyScan(str[i]) and 255; //输入文字
keybd_event(c,0,0,0);
keybd_event(c,0,KEYEVENTF_KEYUP,0);
end;
end;
最后修改:2011 年 01 月 23 日
© 允许规范转载