Zitat von
Brotsuppe:
mache ich das dann so? If (key = "a") Then? so habe ich das nämlich schon mal irgendwo gelesen, oder steht das auch inner borlandhilfe?
Das hängt davon ab, welches Ereignis du benutzt.
Im onKeyPress ist key ein char -> if key = 'a' then ..
Im OnKeyDown und OnKeyUp ist key ein word ->
Delphi-Quellcode:
if (key = ord('A')) and not (shift = [ssShift]) then
..
Grüße
Klaus
[edit] mumpitz korrigiert [/edit]