How do i draw a vertical line in microsoft access during runtime?
I need to darw a vertical line to fill up the gap between the detail and footer and to make sure it dosen’t go to the next page. How do i do it during runing or even in design mode?
As the height of the gap may change due to the amount of info, how to make sure that, the height of the vertical does not exceed, causing it to move to second page?
On design view go to report properties windows
-go to events
-go to on page
-click and select event procedure
-and type the following codes
If Me.Page > 0 Then
Line12.Visible = False
End If
-assuming the line you draw at the Page Footer is named ‘Line12’ at design mode.
have a nice day
for more enquiry you can mail me
One Response
Leave a Comment
|
August 23rd, 2009 at 1:58 pm
On design view go to report properties windows
-go to events
-go to on page
-click and select event procedure
-and type the following codes
If Me.Page > 0 Then
Line12.Visible = False
End If
-assuming the line you draw at the Page Footer is named ‘Line12’ at design mode.
have a nice day
for more enquiry you can mail me
References :