unit WorkingSplashU; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TWorkingForm = class(TForm) Label1: TLabel; private { Private declarations } public { Public declarations } end; var WorkingForm: TWorkingForm; implementation {$R *.dfm} end.