![]() |
Prameter beim Aufruf von Procedure stimmen nicht
hallo,
ich möchte diese funktion aufrufen, wobei lediglich wichtig ist, dass die gedrückte taste f10 ist:
Delphi-Quellcode:
ich hab es so probiert:
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
Delphi-Quellcode:
klappt aber nicht. Mit Edit1 anstatt Form1 geht es auch nicht.
FormKeyDown(Form1, vk_f10, ssShift);
danke schonmal gruß tkliewe |
Re: Prameter beim Aufruf von Procedure stimmen nicht
Hi,
Du willst die Funktion aufrufen ohne die Taste zu drücken? :hi: |
Re: Prameter beim Aufruf von Procedure stimmen nicht
Wenn Du einen
![]() ...:cat:... |
Re: Prameter beim Aufruf von Procedure stimmen nicht
Wenn du es unbedingt so machen willst, dann soltest du auch auf die Parameter achten
Code:
Wenn eine Variable verlangt wird, dann kan man keine Konstante angeben.
procedure TForm1.FormKeyDown(Sender: TObject; [color=blue]var[/color] Key: [color=darkblue]Word[/color]; Shift: [color=red]TShiftState[/color]);
Var [color=blue]T[/color]: [color=darkblue]Word[/color]; [color=blue]T := vk_f10[/color]; FormKeyDown(Form1, [color=blue]T[/color], [color=red][[/color]ssShift[color=red]][/color]); Und wie TShiftState definiert ist ... na ja, sieht man ja jetzt :roll: |
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:27 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz