Text Box position in report

bluerockbluerock Member Posts: 32
Is it possible to change the text box position in report?

1) I have three text boxes in a report.
2) TextBox1's Ypos = 0, TextBox2's Ypos = 50, TextBox3's Ypos = 100
3) If TextBox1 is empty, then other text boxes will move upward.

I would like to know how can i check the text box is empty? and how to move other text boxes? :-k

Thank You.

Answers

  • MBergerMBerger Member Posts: 413
    There no control over controls on report; you can't move them or make them invisible.

    What you could do here is use an array of 3 elements, fill them with the values and then use COMPRESSARRAY on it. That will remove any gaps. On the report you can then add your three textboxes, showing value[1],value[2] and value[3]. Downside is that if there is just 1 value, you still need the space for the other 2.
  • idiotidiot Member Posts: 651
    bluerock wrote:
    Is it possible to change the text box position in report?

    1) I have three text boxes in a report.
    2) TextBox1's Ypos = 0, TextBox2's Ypos = 50, TextBox3's Ypos = 100
    3) If TextBox1 is empty, then other text boxes will move upward.

    I would like to know how can i check the text box is empty? and how to move other text boxes? :-k

    Thank You.
    You can try creating different sections, perhaps one section for each text box & using CurrReport.SHOWOUTPUT
    NAV - Norton Anti Virus

    ERP Consultant (not just Navision) & Navision challenger
Sign In or Register to comment.