yagnik3128
Programmer
I am creating a new report in Access, i have one field with can grow....i have used vertical lines....but that field height is increased.....line height is not getting incresed...how to do that?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Dim intGrownHeight As Integer
Dim ctl As Control
'txtCanGrow is the tallest text box
intGrownHeight = Me.txtCanGrow.Height
For Each ctl In Me.Detail.Controls
If ctl.Tag = "Line" Then
Me.Line (ctl.Left, ctl.Top)- _
Step(0, intGrownHeight)
End If
Next
End Sub