procedure SendText(ds:string);
var
  TI: TInput;
  KI: TKeybdInput;
  i: integer;
begin
  TI.Itype := INPUT_KEYBOARD;
  for i := 1 to Length(ds) do
  begin
    KI.wVk := Ord(UpCase(ds[i]));
    KI.dwFlags := 0;
    TI.ki := KI;
    SendInput(1, TI, SizeOf(TI));
    KI.dwFlags := KEYEVENTF_KEYUP;
    TI.ki := KI;
    SendInput(1, TI, SizeOf(TI));
  end;
end;

How can I add Unicode? Any suggestions how to copy Russian (Cyrilic) symbols using SendInput(Edit1.Text);

link|improve this question

1  
UI Automation or MSAA is what you want. – David Heffernan Oct 18 '11 at 10:00
1  
msdn.microsoft.com/en-us/library/windows/desktop/… MSDN docs are pretty obvious – Boris Treukhov Oct 18 '11 at 10:04
@TLama Ok, I'll try it now. Where i must put *.pas file? – Yurios Oct 18 '11 at 15:04
let us continue this discussion in chat – Yurios Oct 18 '11 at 15:04
feedback

1 Answer

up vote 4 down vote accepted

In this example I've used unit JclUnicode.pas from JEDI project. If you have Delphi 6 up then you can omit the JclUnicode in the uses clause.

uses
  JclUnicode;

procedure SendText(const Value: WideString);
var
  I: Integer;
  S: WideString;
  TI: TInput;
  KI: TKeybdInput;
const
  KEYEVENTF_UNICODE = $0004;
begin
  S := WideUpperCase(Value); 
  TI.Itype := INPUT_KEYBOARD;
  for I := 1 to Length(S) do
  begin
    KI.wVk := 0;
    KI.dwFlags := KEYEVENTF_UNICODE;
    KI.wScan := Ord(S[I]);
    TI.ki := KI;
    SendInput(1, TI, SizeOf(TI));
  end;
end;
link|improve this answer
many thanks to you! – Yurios Oct 19 '11 at 13:25
@Yurios, glad to help you ;) – TLama Oct 19 '11 at 13:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.