Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Make Games In Delphi 7 ?, Help me to mke a game!
mpodner
post Mar 9 2005, 04:42 PM
Post #1


Member [Level 1]
****

Group: Members
Posts: 65
Joined: 7-March 05
Member No.: 4,229



Please help me to make game in Delphi 7 ! smile.gif

If you know some pages with Delphi 7 games source code, POST HERE!! smile.gif
Go to the top of the page
 
+Quote Post
palladin
post Jun 30 2005, 12:57 AM
Post #2


Member [Level 3]
******

Group: Members
Posts: 92
Joined: 28-June 05
Member No.: 8,782



Who say is games are somthing hard to write ?!? laugh.gif here

//---------- code ---------
uses windows;

click1: integer;
click2: integer;
isclicked: boolean;

procedure TForm1.Button1Click(Sender: TObject);
begin
if (!iscliced) then begin
click1 := GetTickCount();
iscliced := TRUE;
end
else begin
click2 := GetTickCount();
Label1.Caption := IntToStr(click2 - click1);
iscliced := FALSE;
end;
end;

//---------------------------

And need form with one Label named Label1 and one Button named Button1 wit above code included to OnClickEvent;

///////////

Thi cool game show how fast player do dubble click tongue.gif in miliseconds cool.gif

laugh.gif laugh.gif laugh.gif laugh.gif laugh.gif laugh.gif
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Creating Games Is Easy...(16)
  2. Flash Games...(7)
  3. Learning To Program Games(5)
  4. Making Games(16)
  5. What Skills Are Required To Make Games?(16)
  6. Games,...(5)


 



- Lo-Fi Version Time is now: 25th July 2008 - 09:19 PM