I wrote a code for vertical lines in report which has memo fields... but the thickness of the line very less.. is it possible to increase the thickness of the line...
i am unable to do it can you explain me in details
in the report because it had a memo field i wrote code for vertical lines and for those lines only i want increase the thickness
It is possible when i draw the line
but i wrote code for it,
its not appearing in the design mode
but i will get it when i print the document
i think we should set this option in the code itself.
As i got the code on this websie only i am unable to change it
Originally posted by QVeen72
Hi,
Select the Line, Right-Click goto Properties,
In "All" Tab,
Set these properties:
Border Style = Solid
BorderWidth =4pt
I have total nine vertical lines in my report. Whether I have to give this code before mentioning all the line details or before that. when i tried at the beginning and at the end it is showing error.
This is the code i am using:
Me.Line (0 * 1440, 0)-(0 * 1440, 15350)
Me.Line (0.5 * 1440, 3500)-(0.5 * 1440, 14000)
Me.Line (2.3 * 1440, 3500)-(2.3 * 1440, 14000)
Me.Line (2.9 * 1440, 3500)-(2.9 * 1440, 14000)
like this i have seven lines
i want increase the width of each line.
Comment