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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Boxes Overlapping

Status
Not open for further replies.

andrea96

Programmer
Jan 26, 2001
201
US
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.
Code:
=IIF( Fields!stop.Value > 0, False, True)

Does anyone have any ideas about why the overlap is occurring?

Thanks,
Andrea
 
If anyone is interested, I found a way around the problem. I underlaid the B/L# and Order# text boxes with a rectangle (no border), and that keeps the PO# text box in the correct place.

Andrea
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top