Imagine that I’m making a table with 2 columns.
I’ve put 2 text boxes in the detail section and set their “Can Grow” & “Can Shrink” properties to “Yes”. The result is a table with no equal height of cells. How to fix? Please help
Printable View
Imagine that I’m making a table with 2 columns.
I’ve put 2 text boxes in the detail section and set their “Can Grow” & “Can Shrink” properties to “Yes”. The result is a table with no equal height of cells. How to fix? Please help
hmm.. how about in the report event:
either onFormat or onPRint (dont remember which one works for This)
VB Code:
If Text1.Height > Text2.Height Then Text2.Height = Text1.height Else Text1.Height = Text2.height End if
Thank you very much. Unfortunately I cant use the Height property in any events.
Please help :blush:
why cant you?
It's just because these properties are not available when writing code in any events.
Any way, I've tried but the two textboxes are still printed in difference height