26 lines
365 B
ObjectPascal
26 lines
365 B
ObjectPascal
|
|
unit InPlaceEditorsDemoSplash;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
||
|
|
ExtCtrls;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrmLoading = class(TForm)
|
||
|
|
Panel1: TPanel;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
frmLoading: TfrmLoading;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.DFM}
|
||
|
|
|
||
|
|
end.
|