Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi TPoint Frage (https://www.delphipraxis.net/129535-tpoint-frage.html)

thomas2009 20. Feb 2009 20:38


TPoint Frage
 
Hallo

kann jemand mir sagen wo das Problem ist?
Delphi-Quellcode:
procedure TForm1.MouseUp(Sender: TObject; Button: TMouseButton;
  Shift: TShiftState; X, Y: Integer);
var
Start: TPoint;
begin

Start.X:=100;
Start.Y:=100;
//Canvas.PenPos := Point(X,Y); // Ohne Fehler
Canvas.PenPos := Start(X,Y);// so geht es nicht
Ich erhalte diesen Fehler : Operator oder Semikolon fehlt

jfheins 20. Feb 2009 20:41

Re: TPoint Frage
 
:glaskugel:

Geraten:
Delphi-Quellcode:
Canvas.PenPos := Point(100,100);
oder
Delphi-Quellcode:
Start.X:=100;
Start.Y:=100;
Canvas.PenPos := Start;

DeddyH 20. Feb 2009 20:41

Re: TPoint Frage
 
Delphi-Quellcode:
Canvas.PenPos := Start;

Fussball-Robby 20. Feb 2009 20:41

Re: TPoint Frage
 
PenPos ist vom Typ TPoint, Start auch. FOlglich:
Delphi-Quellcode:
Canvas.PenPos := Start;
Fertig.

Edit: Jaja, auf die einfach Fragen stürzen sich natürlich direkt alle :mrgreen:

thomas2009 20. Feb 2009 20:46

Re: TPoint Frage
 
Ich habe viele Zeillen von
Delphi-Quellcode:
Canvas.PenPos := Point(X,Y);
dann habe ich das Wort Point durch das Wort Start ersetzt ohne den teil (X,Y) weg zu löschen :mrgreen:

DeddyH 20. Feb 2009 21:01

Re: TPoint Frage
 
Zitat:

Zitat von Fussball-Robby
Edit: Jaja, auf die einfach Fragen stürzen sich natürlich direkt alle :mrgreen:

Und die Kleinsten zuletzt :mrgreen:

Fussball-Robby 20. Feb 2009 21:02

Re: TPoint Frage
 
Zitat:

Zitat von DeddyH
Und die Kleinsten zuletzt :mrgreen:

1,89 Meter, und du? :stupid:

himitsu 20. Feb 2009 21:20

Re: TPoint Frage
 
wie wäre es mit Folgendem?
Delphi-Quellcode:
Canvas.MoveTo(100, 100);
[edit]
1,72

DeddyH 20. Feb 2009 21:46

Re: TPoint Frage
 
Laut Hilfe ist das genau dasselbe, also Geschmackssache.

P.S.: 1,78


Alle Zeitangaben in WEZ +1. Es ist jetzt 21:03 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