Is it possible to insert text from tEdit into other apllications such web browsers, using Delphi+SendInput? Would you help me with code? Thanks!
PS: this source is about inserting unicode symbols from the txt file.
program SpecChar;
uses
{$IFDEF Tricks}
HeapMM,
{$ENDIF}
Windows, Messages;
{$IFDEF Tricks}
{$I Lite.inc}
{$ENDIF}
const
KEYEVENTF_EXTENDEDKEY = 1;
KEYEVENTF_KEYUP = 2;
KEYEVENTF_UNICODE = 4;
KEYEVENTF_SCANCODE = 8;
var
Sequences: array[Byte] of WideString;
function CreateCharMenu: HMENU;
var
{$IFDEF Tricks}
F: THandle;
ReadBytes: Cardinal;
{$ELSE}
F: file;
{$ENDIF}
UnicodeSign: WideChar;
Chars: array[0..1023] of WideChar;
I, Count, SeqCount, StopPos, SkipBack: Integer;
Sequence, NewCol: Boolean;
S: WideString;
ErrorStr, Path: string;
procedure AppendItem(ID: Cardinal; const Text: WideString);
begin
AppendMenuW(Result, Ord(NewCol) * MF_MENUBARBREAK, ID, PWideChar(Text));
NewCol := False;
end;
begin
SetLength(Path, MAX_PATH);
Count := GetModuleFileName(hInstance, Pointer(Path), MAX_PATH);
while Path[Count] <> '\' do
Dec(Count);
{$IFNDEF Tricks}
AssignFile(F, Copy(Path, 1, Count) + 'SpecChar.ini');
FileMode := 0;
{$I-}
Reset(F, 2);
if IOResult = 0 then
begin
BlockRead(F, UnicodeSign, 1);
if (IOResult = 0) or (UnicodeSign = #$FEFF) then
begin
BlockRead(F, Chars, Length(Chars), Count);
if Count = 0 then
ErrorStr := 'is empty';
end
else
ErrorStr := 'is not Unicode';
CloseFile(F);
end
else
ErrorStr := 'does not exist';
{$I+}
{$ELSE}
if Reset(F, Copy(Path, 1, Count) + 'SpecChar.ini') then
begin
if BlockRead(F, UnicodeSign, SizeOf(UnicodeSign), ReadBytes) and
(ReadBytes = SizeOf(UnicodeSign)) and (UnicodeSign = #$FEFF) then
begin
if BlockRead(F, Chars, Length(Chars), ReadBytes) and (ReadBytes = 0) then
ErrorStr := 'is empty';
end
else
ErrorStr := 'is not Unicode';
CloseHandle(F);
end
else
ErrorStr := 'does not exist';
Count := ReadBytes div SizeOf(WideChar);
{$ENDIF}
Result := CreatePopupMenu;
Sequence := False;
SeqCount := 0;
NewCol := False;
StopPos := -1; // due to blind compiler
if ErrorStr = '' then
begin
for I := 0 to Count - 1 do
if Sequence then
if (Chars[I] = '}') and ((I = Count - 1) or (Chars[I + 1] <> '}')) then
begin
Sequence := False;
if SeqCount < Length(Sequences) then
begin
if StopPos >= 0 then
SkipBack := Length(S) - StopPos
else
SkipBack := 0;
Sequences[SeqCount] := S;
AppendItem($10000 or SeqCount or SkipBack shl 8, S);
Inc(SeqCount);
end;
end
else
if (Chars[I] = '^') and (StopPos = -1) then
StopPos := Length(S)
else
S := S + Chars[I]
else
case Chars[I] of
'{':
begin
Sequence := True;
StopPos := -1;
S := '';
end;
'|':
AppendMenuW(Result, MF_SEPARATOR, 0, nil);
#10, #13:
NewCol := True;
else
AppendItem(Ord(Chars[I]), Chars[I]);
end;
{$IFDEF Quit}
AppendMenuW(Result, MF_SEPARATOR, 0, nil);
AppendMenuW(Result, MF_STRING, 0, 'Exit');
{$ENDIF}
end
else
AppendItem(0, 'Special characters ini-file ' + ErrorStr);
end;
var
ForeWnd: HWND;
MenuDisplay: Boolean;
procedure SimulateKeystroke(Key: WideChar); overload;
var
Input: array[0..1] of TInput;
begin
FillChar(Input, SizeOf(Input), 0);
with Input[0] do
begin
Itype := INPUT_KEYBOARD;
with ki do
begin
wScan := Word(Key);
dwFlags := KEYEVENTF_UNICODE
end;
end;
with Input[1] do
begin
Itype := INPUT_KEYBOARD;
with ki do
begin
wScan := Word(Key);
dwFlags := KEYEVENTF_UNICODE or KEYEVENTF_KEYUP;
end;
end;
SendInput(Length(Input), Input[0], SizeOf(TInput));
end;
procedure SimulateKeystroke(Key: Word); overload;
var
Input: array[0..1] of TInput;
begin
FillChar(Input, SizeOf(Input), 0);
with Input[0] do
begin
Itype := INPUT_KEYBOARD;
ki.wVk := Key;
end;
with Input[1] do
begin
Itype := INPUT_KEYBOARD;
with ki do
begin
wVk := Key;
dwFlags := KEYEVENTF_KEYUP;
end;
end;
SendInput(Length(Input), Input[0], SizeOf(TInput));
end;
function WindowProc(Wnd: HWND; Msg: Cardinal; WParam, LParam: Longint): Longint;
stdcall;
var
S: WideString;
I: Integer;
Menu: HMENU;
P: TPoint;
begin
Result := 0;
case Msg of
WM_COMMAND:
if WParam > 0 then
begin
SetForegroundWindow(ForeWnd);
if WParam < $10000 then
SimulateKeystroke(WideChar(WParam))
else
begin
S := Sequences[WParam and $FF];
for I := 1 to Length(S) do
SimulateKeystroke(S[I]);
for I := 1 to WParam shr 8 and $FF do
SimulateKeystroke(VK_LEFT);
end;
{$IFNDEF Quit}
end;
{$ELSE}
else
PostQuitMessage(0);
{$ENDIF}
WM_HOTKEY:
if MenuDisplay then
EndMenu
else
begin
Menu := CreateCharMenu;
GetCursorPos(P);
ForeWnd := GetForegroundWindow;
SetForegroundWindow(Wnd);
MenuDisplay := True;
try
TrackPopupMenu(Menu, TPM_CENTERALIGN, P.X, P.Y, 0, Wnd, nil);
finally
MenuDisplay := False;
SetForegroundWindow(ForeWnd);
end;
DestroyMenu(Menu);
end;
else
Result := DefWindowProc(Wnd, Msg, WParam, LParam);
end;
end;
const
sUnicodeRequired = 'This program requires Windows NT';
var
Mutex: THandle;
Cls: WNDCLASS = (lpfnWndProc: @WindowProc; lpszClassName: 'AppWin');
Wnd: HWND;
Msg: TMsg;
begin
{$IFDEF Tricks}
UseErrorMessageBox;
{$ENDIF}
if GetVersion and $80000000 <> 0 then
begin
{$IFDEF Tricks}
ErrorMessage(sUnicodeRequired, Length(sUnicodeRequired));
{$ELSE}
MessageBox(0, sUnicodeRequired, nil, MB_ICONERROR);
{$ENDIF}
Exit;
end;
Mutex := CreateMutex(nil, True, 'SpecChar_Running');
if WaitForSingleObject(Mutex, 0) = WAIT_OBJECT_0 then
begin
Cls.hInstance := HInstance;
Windows.RegisterClass(Cls);
Wnd := CreateWindow(Cls.lpszClassName, '', WS_POPUP, 0, 0, 0, 0, 0, 0,
HInstance, nil);
RegisterHotKey(Wnd, 0, MOD_WIN, Ord('C'));
while GetMessage(Msg, 0, 0, 0) do
DispatchMessage(Msg);
{$IFDEF Quit}
UnregisterHotKey(Wnd, 0);
DestroyWindow(Wnd);
end;
CloseHandle(Mutex);
{$ELSE}
end;
{$ENDIF}
end.
.inifor files that are not INI files... – Andreas Rejbrand Oct 14 '11 at 22:26