Goran Level: Moderator
 Registered: 16-05-2002 Posts: 1681
|
Re: Design crystal report at runtime
Every object in report in a part of Section, so you can acces it in ReportsObjects collection of each section. EXample:
| rpt.Sections(1).ReportObjects"text1").SetText "some text" |
For moving the object use its Left and Top properties....
Text1 is the name of the objext you wish to change. This name can be found in the format editor of the object. When you are in design mode, right click on a textbox object, select Format_text, go to common tab, and look at object name.
____________________________
If you find the answer helpful, please mark this topic as solved.
|