Einzelnen Beitrag anzeigen

the-networker

Registriert seit: 25. Okt 2003
Ort: Dortmund
33 Beiträge
 
Delphi 7 Professional
 
#2

Re: Automatische Umschaltung des Keyboardlayouts abschalten

  Alt 27. Jul 2006, 15:53
Habe mein Problem wie folgt gelöst:

Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
ActiveLayout:hkl;
begin
  ActiveLayout:=GetKeyboardLayout(GetWindowThreadProcessId(GetForegroundWindow, nil));
  If ActiveLayout <> GetKeyboardLayout(0) then
    ActivateKeyboardLayout(ActiveLayout, 0);
end;
  Mit Zitat antworten Zitat