Text Box size -Reg (1 Viewer)

Jimal

Member
Local time
Tomorrow, 03:00
Joined
Sep 29, 2020
Messages
60
dear friends...
Im using the PIPELINE symbol (|)in my report one below other - so that in a report it will look like a continued line..(silly idea but it works to a level)
the problem is I see som extra spaces above the text which I could not remove by minimizing the text box size.
see the below snapshot (every three rows correspond to one record of the database)
I have used 3 nos of "|" one overlapping other-----> the problem comes for the fist text box alone (see the space above the | symbol within text box)
any ideas how to overcome this..

1603970111327.png
 

Attachments

  • 1603970102995.png
    1603970102995.png
    7.2 KB · Views: 130

Extra_Cover

Registered User.
Local time
Today, 22:30
Joined
Oct 21, 2008
Messages
71
Why not use the 'Line' option in the design section of reports?
 

Jimal

Member
Local time
Tomorrow, 03:00
Joined
Sep 29, 2020
Messages
60
hi @Extra_Cover
I need those lines based on some conditions.
is there a way we can apply condition base to a line??
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 05:30
Joined
May 7, 2009
Messages
19,242
you can use Detail section Format event to add condition.
 

Extra_Cover

Registered User.
Local time
Today, 22:30
Joined
Oct 21, 2008
Messages
71
hi @Extra_Cover
I need those lines based on some conditions.
is there a way we can apply condition base to a line??
I don't see why not. As arnelgp says select the on format event in the detail section.

Code could be something like
Code:
If Me.YourControl = YourConditions Then
    Me.Line1.Height = 1110
Else
    Me.Line1.Height = 0
End If

Here if YourControl = YourConditions the height of the Control Line1 = 1110 if not the height is 0, not shown.
 

Users who are viewing this thread

Top Bottom