Registriert seit: 5. Feb 2007
4 Beiträge
|
Wie kann ich mit Delphi 7 enterpice ein ping pong abprallen
14. Feb 2007, 13:37
brauch hilfe wer echt cool da ich ein echter Anfänger bin. zur zeit siehts so aus
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TForm1 = class(TForm)
GroupBox1: TGroupBox;
Shape1: TShape;
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Timer1.Interval := 150;
shape1.Left := shape1.Left + 25;
end;
end.
[edit=Phoenix]Dann füg ich die Code-Tags halt ein *GRUMMEL* Mfg, Phoenix[/edit]
|
|
Zitat
|