I have an issue where two text labels are on the same horizontal line on a form.
The label to the left expands to the right and down and is anchored to the bottom left of the form.
The label on the right is anchored to the bottom right of the form.
Both labels hold an address, one is a mailing address, the other is a physical address.
Both should have left aligned text, but the problem is that since the labels are autosized to fit their content, the label on the right always runs off the screen and when the form is resized, because of the anchor, nothing changes.
Is there a way to do something like this: (ASCII art is hard!)
------------------------------------------------------------------------
| |
| 123 Any Street 2039 Market Street |
| Cincinnati, OH 45168 Cincinnati, OH 45168 |
| |
------------------------------------------------------------------------
instead of:
------------------------------------------------------------------------
| |
| 123 Any Street 2039 Market Stre|
| Cincinnati, OH 45168 Cincinnati, OH 4|
| |
------------------------------------------------------------------------
I'd really appreciate any advice!