Ver Mensaje Individual
  #4  
Antiguo 19-05-2010
subzero subzero is offline
No confirmado
 
Registrado: ene 2004
Ubicación: Móntería - Córdoba - Colombia
Posts: 289
Reputación: 0
subzero Va por buen camino
Claro el error que me muestra es:

Código:
Checking project dependencies...
Compiling mxNativeExcel_d12.dproj (Debug configuration)
[DCC Error] mxNativeExcel_About.pas(99): E2029 Expression expected but ';' found
[DCC Fatal Error] mxNativeExcelReg.pas(57): F2063 Could not compile used unit 'mxNativeExcel_About.pas'
Failed
Elapsed time: 00:00:00.6
y la linea resaltada dentro del código es la que resalto en negrilla:

Código Delphi [-]
Procedure ShowAboutBox( Const ComponentName: String );
Begin
     With Tfrm_AboutBox.Create( Application ) Do
     Try
          Lbl_ComponentName.Caption := ComponentName;

          Lbl_Delphi.Caption := 'Compiled in ' +

{$IFDEF VER80} 'Delphi 1.0'{$ENDIF}
{$IFDEF VER90} 'Delphi 2.0'{$ENDIF}
{$IFDEF VER100} 'Delphi 3.0'{$ENDIF}
{$IFDEF VER120} 'Delphi 4.0'{$ENDIF}
{$IFDEF VER130} 'Delphi 5.0'{$ENDIF}
{$IFDEF VER140} 'Delphi 6.0'{$ENDIF}
{$IFDEF VER150} 'Delphi 7.0'{$ENDIF}
{$IFDEF VER170} 'Delphi 2005'{$ENDIF}
{$IFDEF VER180} 'Delphi 2006'{$ENDIF}
{$IFDEF VER200} 'Delphi 2009'{$ENDIF}
{$IFDEF VER93} 'C++Builder 1.0'{$ENDIF}
{$IFDEF VER110} 'C++Builder 3.0'{$ENDIF}
{$IFDEF VER125} 'C++Builder 4.0'{$ENDIF}; <--- Aqui muestra el error

          ShowModal;

     Finally
          Free;
     End;
End;
Responder Con Cita