我用delphi制作fash播放器的时候不能运行,出现了一个这样的代码[
Fatal Error] Unable to build.  License is invalid or has expired.
[Fatal Error] Unable to build.  License is invalid or has expired.
[Fatal Error] Project1.dpr(2): Read error on 'c:\program files\borland\delphi7\Lib\System.dcu'
那位大侠帮我一下
unit Unit1;interfaceuses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, OleCtrls, ShockwaveFlashObjects_TLB, ExtCtrls, StdCtrls,
  ComCtrls;type
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Button4: TButton;
    Button5: TButton;
    Timer1: TTimer;
    OpenDialog1: TOpenDialog;
    ShockwaveFlash1: TShockwaveFlash;
    TrackBar1: TTrackBar;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;var
  Form1: TForm1;implementation{$R *.dfm}procedure TForm1.Button1Click(Sender: TObject);
 var
  swf:widestring;
begin
 if opendialog1.execute then
 begin
   swf:=opendialog1.filename;
   shockwaveflash1.movie:=swf;
   trackbar1.max:=shockwaveflash1.totalframes;
   trackbar1.frequency:=trackbar.max div 10;
   timer1.enabled:=true;
end;
end;
end.