I have ReportBuilder 7 and sdac 3.XXX
but i cant compile report builder demo because it is on ReportBuilder 6
what i should be do?
sdac and ReportBuilder 7
That's no help.
What you need to do it change the section called requires in rbsdac.dpk according to the version:
version 6 of report builder for delphi 6...
(this one comes with SDAC):
requires
sdac60,
dac60,
vclx,
rbRCL76,
rbIDE76,
rbDB76,
rbDAD76,
sdacvcl60,
dacvcl60;
version 7 of report builder for delphi 7:
requires
sdac70,
dac70,
vclx,
rbRCL77,
rbIDE77,
rbDB77,
rbDAD77,
sdacvcl70,
dacvcl70;
version 9 of report builder for delphi 7:
requires
sdac70,
dac70,
vclx,
rbRCL97,
rbIDE97,
rbDB97,
rbDAD97,
sdacvcl70,
dacvcl70;
Open the ammend package in Delphi, compile and install and you should be able to get it up and running.
(Don't forget to put the rbsdac.dcu in the right directory afterwards)
Erik.
What you need to do it change the section called requires in rbsdac.dpk according to the version:
version 6 of report builder for delphi 6...
(this one comes with SDAC):
requires
sdac60,
dac60,
vclx,
rbRCL76,
rbIDE76,
rbDB76,
rbDAD76,
sdacvcl60,
dacvcl60;
version 7 of report builder for delphi 7:
requires
sdac70,
dac70,
vclx,
rbRCL77,
rbIDE77,
rbDB77,
rbDAD77,
sdacvcl70,
dacvcl70;
version 9 of report builder for delphi 7:
requires
sdac70,
dac70,
vclx,
rbRCL97,
rbIDE97,
rbDB97,
rbDAD97,
sdacvcl70,
dacvcl70;
Open the ammend package in Delphi, compile and install and you should be able to get it up and running.
(Don't forget to put the rbsdac.dcu in the right directory afterwards)
Erik.