Software snipets for the Delphi & Pascal Community
Sep 05, 2010 - 05:38 AM
alt1
Borland :: Mailing Lists
alt1
Search  
alt1
alt1 alt1 alt1
alt1
Main Menu
alt1
· Home
· Your Account

Other Options

· AvantGo
· Downloads
· FAQ
· Members List
· Messages
· News
· Recommend Us
· Reviews
· Search
· Sections
· Stats
· Submit News
· Topics
· Top List
· Web Links

alt1
Who's online
alt1
There are currently, 6 guest(s) and 0 member(s) online.

You are an anonymous user. You can register for free by clicking here


alt1
alt1
Check the BDE version in your application
Posted by: Gayle
alt1
Topic General Database Handling
Sometimes you may want to have your application check that the proper BDE version is installed.

Use the following code, provided by Richard C Haven:




program BDEVersion;

uses
Forms,
DB,
BDE,
Dialogs,
SysUtils;

{$R *.RES}

var
ThisVersion : SYSVersion;
begin
DbiGetSysVersion(ThisVersion);
ShowMessage('.linksarray[0]. DATABASE ENGINE VERSION = ' + IntToStr(ThisVersion.iVersion));
end.


alt1
alt1
 
alt1
Login
alt1
Username

Password

Don't have an account yet? You can create one. As a registered user you have some advantages like a theme manager, comments configuration and posting comments with your name.

alt1
Related links
alt1
· More about General Database Handling
· News by admin
· Borland


Most read story in General Database Handling:
Fix Conflict between TDatabase & TObject


Printer friendly page  Send this story to a friend

"Check the BDE version in your application" | Login/Create an account | 0 Comments
Threshold
Comments are owned by the poster. We aren't responsible for their content.
alt1
Report Bugs :: Tasks :: Developers 
alt1




alt1