TF Guest
|
Posted: Mon Nov 22, 2004 2:10 pm Post subject: How convert a Delphi file package to BCB file package ? |
|
|
Hi,
I would like install a Delphi VCL under BCB3.0.
How can I convert e Delphi package (*.DPK) to a BCB package (*.BPL)
Thank
This is the Delphi Package
package aoADODB3D;
{$R *.RES}
{$R 'aoADODB.dcr'}
{$R 'DataSet_Test.dcr'}
{$ALIGN ON}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST ON}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESIGNONLY}
{$IMPLICITBUILD ON}
{$DESCRIPTION 'aoADODB Component Suite, Design Time for Delphi 3'}
requires
vcl30,
vcldb30;
contains
aoADODB,
aoADODB_Edit,
aoADODB_SDG,
DataSet_Test,
aoMSDASC_TLB,
aoADODB_TLB;
end.
|
|