home *** CD-ROM | disk | FTP | other *** search
- { This is a simple demo to show how to use the TBlinkLabel component for Delphi
-
- Please note: The labels don't blink while designing, only when the application is
- actually running.
- }
- unit Main;
-
- interface
-
- uses
- Classes, Controls, Forms, StdCtrls, Blabel;
-
- type
- TForm1 = class(TForm)
- BlinkLabel1: TBlinkLabel;
- BlinkLabel2: TBlinkLabel;
- BlinkLabel3: TBlinkLabel;
- BlinkLabel4: TBlinkLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- end.
-