Componentes.Terceros.DevExp.../official/x.36/ExpressPrinting System/Demos/Delphi/DB ReportExplorer/Splash.pas
2008-06-02 17:37:37 +00:00

45 lines
1.4 KiB
ObjectPascal

unit Splash;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls;
type
TfmSplash = class(TForm)
lblText: TLabel;
pnlImageHost: TPanel;
Image1: TImage;
Bevel1: TBevel;
btnOK: TButton;
procedure FormCreate(Sender: TObject);
end;
implementation
{$R *.DFM}
procedure TfmSplash.FormCreate(Sender: TObject);
const
CRLF = #13#10;
WarningText: string =
' If you do not own appropriate Control Libraries from Developer Express Inc., part of Reports ' + CRLF +
'cannot be used, because last ones are needed specific ReportItems for rendering from these Libraries.' + CRLF +
' Mentioned above ReportItems are the part of ReportLinks for these Libraries.' + CRLF +
CRLF +
CRLF +
' In case you own them, just uncomment follow units in uses clause of "Main.pas"' + CRLF +
CRLF +
' - dxPScxSSLnk for ExpressSpreadSheet' + CRLF +
' - dxPSdxLCLnk for ExpressLayoutControl (Only available in Delphi5 and higher)' + CRLF +
' - dxPScxCommon for ExpressEditors' + CRLF +
' (also needed for ExpressQuntumGrid v4, ExpressQuntumTree v4 and ExpressVerticalGrid v3)' + CRLF +
' - dxPSExtCommon for ExpressExtendedEditors';
begin
Caption := Application.Title;
lblText.Caption := WarningText;
end;
end.