
Este es el countdow:

Y aqui sale para la luna:

Esto es parte del codigo, mañana lo termino y lo pongo todo junto con el fuente.
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, jpeg, StdCtrls, Buttons, ComCtrls; type TForm1 = class(TForm) Image1: TImage; Rocket: TImage; FRocket: TImage; BExit: TBitBtn; BStart: TBitBtn; Timer1: TTimer; Timer2: TTimer; TrackBar1: TTrackBar; CountDow: TPanel; Label1: TLabel; procedure BExitClick(Sender: TObject); procedure BStartClick(Sender: TObject); procedure Timer1Timer(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.BExitClick(Sender: TObject); begin Close; end; procedure TForm1.BStartClick(Sender: TObject); begin Timer1.Enabled := True; end; procedure TForm1.Timer1Timer(Sender: TObject); begin Countdow.Caption := inttostr(strtoint(Countdow.Caption)-1); if Countdow.Caption = '0' then begin Timer1.Enabled := False; Rocket.Visible := False; FRocket.Visible := True; end; end; end.
Hoy los ingenieros estan cansados y mañana le seguimos.
Un Saludo.