How do i draw a vertical line in microsoft access during runtime?

Posted on August 23rd, 2009 by admin in access on line | 1 Comment »

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

  1. wunti Says:

    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 :

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.

|