Jumat, 25 Januari 2019

CARA MEMBUAT ANIMASI LODING DENGAN DELPHI7 LENGKAP DENGAN VIDIO

 CODING ANIMASI LODING , LEBIH LENGKAP SILAKAN NONTON VIDIO DIBAWA !!!
salam sarjana stimik





unit animasi;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, acPNG, ExtCtrls, StdCtrls, XPMan, ComCtrls, sSkinManager;

type
  TAnimasi_Loding = class(TForm)
    Timer1: TTimer;
    ProgressBar1: TProgressBar;
    XPManifest1: TXPManifest;
    Label1: TLabel;
    Label2: TLabel;
    Image1: TImage;
    sSkinManager1: TsSkinManager;
    procedure Timer1Timer(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Animasi_Loding: TAnimasi_Loding;

implementation

uses welcome;

{$R *.dfm}

procedure TAnimasi_Loding.Timer1Timer(Sender: TObject);
begin
Timer1.Interval:=100;
ProgressBar1.Position:=ProgressBar1.Position+1;
if ProgressBar1.Position = 100 then
begin
ProgressBar1.Position:=0;
Timer1.Enabled:=False;
Animasi_Loding.Hide;
Form_welcome.Show;
end;
end;

end.




VIDIO TUTORIAL MEMBUAT APLIKASI ANIMASI LODING DENGAN DELPHI7 LENGKAP:

Tidak ada komentar:

Posting Komentar