habe es nochmal geändert wie du es geschrieben hast aber es kommt immer noch die einen fehler und ich weiss nciht was ich machen soll sry
edit: @ flash erm.. ich weis nicht was du meinst mit Form1.OnKeyDown
Code:
Build
[Error] Unit1.pas(53): Undeclared identifier: 'FormKeyDown'
[Error] Unit1.pas(53): ';' expected but '(' found
[Error] Unit1.pas(53): ';' expected but ')' found
[Error] Unit1.pas(56): Undeclared identifier: 'Image1'
[Error] Unit1.pas(56): Missing operator or semicolon
[Fatal Error] Project1.dpr(5): Could not compile used
unit 'Unit1.pas'
Delphi-Quellcode:
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
if key=#87 then
Image1.Top := Image1.Top -5;
end;
end.