Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

accessing BoxObject at runtime

Status
Not open for further replies.

garths2

Programmer
Jan 15, 2002
57
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top