Install Problem:
I am trying to install the Open Query Builder packages into Delphi 7 along side FastReport 2.51.
I am getting the following error:
Cannot load package 'OQB70.' It contains unit 'QBAbout, ' which is also contained in package 'FR7'.
Any suggestions?
I am getting the following error:
Cannot load package 'OQB70.' It contains unit 'QBAbout, ' which is also contained in package 'FR7'.
Any suggestions?
Comments
fr now has oqb built in.
sample changes for d7 to allow oqb to be used in application along with fr's oqb for reportdialogs
in the fastreport\source dir
The conflicting units are QBuilder, QBAbout, QBLnkFrm. You should rename
these units to frQBuilder,frQBAbout, frQBLnkFrm.
Also rename all references to these units (from these units them selves,
fr_dbsqledit
in FR_DBSqledit.pas change refrence to qbuilder to frQbuilder,
from .dpk file
fr7.dpk
//
query builder change to
frQBAbout in 'frQBAbout.pas',
frQBLnkFrm in 'frQBLnkFrm.pas',
frQBuilder in 'frQBuilder.pas',
from FR_Reg.pas no change
and from db engines (units fr_xxxQB, fr_xxxQuery).
qbuilder reference is in:
fastreport\source\dbx
fr_dbxqb
fr_dbxquery
fastreport\source\ado
fr_adoqb
fr_adoquery
fastreport\source\bde
fr_bdeqb
fr_bdequery
fastreport\source\ibx
fr_ibxqb
fr_ibxquery
have tested with bde and works fine
regards
gord,