 |
|
|
 |
There are currently, 6 guest(s) and 0 member(s) online.
You are an anonymous user. You can register for free by clicking here
|
|
 |
 |
Check the BDE version in your application
Posted by: Gayle |
|
 |
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.
|
 |
 |
| |
 |
|
|
 |
| 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. |
|
| "Check the BDE version in your application" | Login/Create an account | 0 Comments |
|
| | Comments are owned by the poster. We aren't responsible for their content. |
|