I have several text boxes in a list. This is basically the layout of the list.
B/L# Order# PO#
Instructions:
notes
When I conditionally hide the "Instructions" text box, based on the value of a field in the dataset, the "B/L#" and "Order#" text boxes remain in the same position, but the "PO#" text box moves to the left and overlaps the "Order#". If I remove the expression to hide the instructions, all text boxes are in the correct location. Here is my expression for hiding the instructions.
Does anyone have any ideas about why the overlap is occurring?
Thanks,
Andrea
B/L# Order# PO#
Instructions:
notes
When I conditionally hide the "Instructions" text box, based on the value of a field in the dataset, the "B/L#" and "Order#" text boxes remain in the same position, but the "PO#" text box moves to the left and overlaps the "Order#". If I remove the expression to hide the instructions, all text boxes are in the correct location. Here is my expression for hiding the instructions.
Code:
=IIF( Fields!stop.Value > 0, False, True)
Does anyone have any ideas about why the overlap is occurring?
Thanks,
Andrea