side-by-side textboxes are different heights

  • Thread starter Thread starter DavPet
  • Start date Start date
D

DavPet

My report has several text boxes side-by-side. The report has a label
(border=transparent) followed by "computer entries" in boxes (border =
solid). Each textbox has a fixed width and can grow because each textbox
has variable data lengths.

How can I make all of the text boxes (with the borders) the same height ie.
as tall as the tallest?
 
DavPet said:
My report has several text boxes side-by-side. The report has a label
(border=transparent) followed by "computer entries" in boxes (border =
solid). Each textbox has a fixed width and can grow because each textbox
has variable data lengths.

How can I make all of the text boxes (with the borders) the same height ie.
as tall as the tallest?


You can't.

You can use code to draw lines around the controls instead
of using the Border property. While this can get to be
tricky, Stephen Lebans has put it all together in his
PrintLines db at www.lebans.com
 
Thank you. This is a very helpful site.

Marshall Barton said:
You can't.

You can use code to draw lines around the controls instead
of using the Border property. While this can get to be
tricky, Stephen Lebans has put it all together in his
PrintLines db at www.lebans.com
 
Back
Top