I am trying to reference a BoxObject in my report at runtime from my VB application but I am getting an error 30017 Feature unavailable.
Here is a snippet from my code, all objects have been dimmensioned:
Set CrystalReport = CrystalApp.OpenReport(report_path)
Set rsections = CrystalReport.Sections
Set section = rsections.Item(1)
Set robjects = section.ReportObjects
Set box = robjects.Item(2)
box.Left = 0.2
Error happens when I am trying to do anything with the box object.
Any idea what I might be doing wrong?
Thanks,
Garth
Here is a snippet from my code, all objects have been dimmensioned:
Set CrystalReport = CrystalApp.OpenReport(report_path)
Set rsections = CrystalReport.Sections
Set section = rsections.Item(1)
Set robjects = section.ReportObjects
Set box = robjects.Item(2)
box.Left = 0.2
Error happens when I am trying to do anything with the box object.
Any idea what I might be doing wrong?
Thanks,
Garth