Is there a plugin available or a scripting method available to do the following:
1. Determine if the Borland BDE is installed and determine the version
2. If it is not detected, install BDE
Thanks!
BDE requirements
Sorry, no samples...I apologize. Just find the BDE merge modules in your Borland product folders, add them to your project.
Because BDE is by now a retired legacy technology, we will not be developing new plug-ins to support it - although other users of InstallAware might be able to do so using our open plug-in architecture.
Because BDE is by now a retired legacy technology, we will not be developing new plug-ins to support it - although other users of InstallAware might be able to do so using our open plug-in architecture.
Re: BDE requirements
Orionizer wrote:Is there a plugin available or a scripting method available to do the following:
1. Determine if the Borland BDE is installed and determine the version
2. If it is not detected, install BDE
1a. Determine if BDE is installed:
function BDEInstalled: boolean;
//Check if BDE is installed by trying to init the BDE
begin
result := (dbiInit(nil) = 0);
if result then
dbiExit;
end;
1b. Determine the version:
See http://www.delphifaq.com/faq/delphi/database/f72.shtml
2. Install BDE
You can find the latest BDE merge modules here:
http://info.borland.com/devsupport/bde/bdeupdate.html
The examples are in Delphi. I have it in an MSI dll. Let me know if you need the source and I get send it to you.
/Fredrik
Who is online
Users browsing this forum: No registered users and 182 guests