Registriert seit: 17. Jan 2007
1.169 Beiträge
Turbo Delphi für Win32
|
Re: Problem mit KeyDown
16. Mai 2008, 01:07
Hi,
setze mal den Focus in das Control, dann funktioniert es auch.
Delphi-Quellcode:
...
with TBlah.create(self) do
begin
parent:=self;
top:=0;
left:=0;
width:=100;
height:=100;
SetFocus;
end;...
Gruß bitsetter
"Viele Wege führen nach Rom" Wolfgang Mocker (geb. 1954), dt. Satiriker und Aphoristiker
|