I just downloaded Winzip 7 which lets me view the contents of CAB files.
Inside BDEINST.CAB is BDEINST.DLL.  I found that I could click on the DLL
and it would run!  Yikes!!  I could run the install direct from the DLL.

I then discovered that this was because I have a shell extension that will
register and unregister DLL's and EXE so the DLL was associated with this
utility.  However, I also tried using TREGSVR on the BDEINST.DLL and binge,
that worked too.  The install from the DLL would start.

SO:  To install the BDE all you need is to try to registr BDEINST.DLL from
your installation program.

Neat eh?






"Mike Lance" <[EMAIL PROTECTED]> on 03/12/98 00:41:00

Please respond to [EMAIL PROTECTED]

To:   Multiple recipients of list delphi <[EMAIL PROTECTED]>
cc:    (bcc: Peter Jones/Logistics&Information
      Technology/Christchurch/Foodstuffs)
Subject:  [DUG]:  .CAB and .INF




Hi Peter,

without understanding what it means (!)
the information in dbeinst.txt seems to imply that Delphi will
generate the .INF file for you.

- MIKE LANCE

cut from dbeinst.tx below...


To use the BDE in an ActiveX control, deploy the BDEINST.CAB file:

1. With your ActiveX project open in the IDE, choose
Project | Web Deployment Options. Select the Project
tab and check Deploy Additional Files.

2. Select the Additional Files tab. Click Add, then select
BDEINST.CAB (in the ...\BDE directory). Click OK.

3. Later, when you choose Project | Web Deploy, Delphi 4 generates an
.INF file for your project. To use BDEINST.CAB, you'll need to edit
this file manually. Open the file in an editor and replace

  Bdeinst.cab=Bdeinst.cab

with

  Bdeinst.dll=Bdeinst.dll

Then replace

  [Bdeinst.cab]
  file=<filename>

with

  [Bdeinst.dll]
  file=http://<your server path here>/Bdeinst.cab
  clsid={FB99D710-18B9-11DO-A4CF-00A024C91936}
  RegisterServer=yes
  FileVersion=4,5,1,4


The example below shows an edited .INF file. Lines that have been
added or changed are marked with an asterisk (*). Do not include the
asterisks in your .INF file.

  ;Delphi 4-generated INF file for MyProj.ocx
  [Add.Code]
  MyProj.ocx=MyProj.ocx
  Bdeinst.dll=Bdeinst.dll                            *

  [MyProj.ocx]
  file=http://www.MyServerPath.com/MyProj.ocx
  clsid={D2E04E83-041F-11D1-AA40-444553540000}
  RegisterServer=yes
  FileVersion=1.0.0.0

  [Bdeinst.dll]                                      *
  file=http://www.MyServerPath.com/Bdeinst.cab       *
  clsid={FB99D710-18B9-11DO-A4CF-00A024C91936}       *
  RegisterServer=yes                                 *
  FileVersion=4,5,1,4                                *
---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz






---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to