|
-
Jul 19th, 2006, 10:23 AM
#1
Thread Starter
Member
How do I size text box in report?
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
-
Jul 19th, 2006, 12:54 PM
#2
Re: How do I size text box in report?
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
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Jul 26th, 2006, 06:39 AM
#3
Thread Starter
Member
Re: How do I size text box in report?
Thank you very much. Unfortunately I cant use the Height property in any events.
Please help
-
Jul 26th, 2006, 08:52 AM
#4
Re: How do I size text box in report?
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Aug 2nd, 2006, 10:23 AM
#5
Thread Starter
Member
Re: How do I size text box in report?
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|