How do you disable the vertical scroll bar in a Data Repeater?

Locked How do you disable the vertical scroll bar in a Data Repeater?

  • Wednesday, February 08, 2012 10:47 AM
     
     
    I have a Data Repeater on a form that displays a set of records.  I also have a navigation bar at the top of this repeater that I want users to use for navigation between the records as opposed to the vertical scroll bar..  Is there anyway to disable the vertocal scroll bar?  I have tried <name of repeater>.VerticalScroll.Visible = false as well as <name of repeater>.VerticalScroll.Endabled = False both of which seem to have no effect... My Data Repeater is set to virtual mode so am I not sure if I need to handle this in item needed event or elsewhere or if it is even possible....  Thanks in advance for any advise here...

All Replies

  • Friday, February 10, 2012 6:17 AM
    Moderator
     
     

    Hi,

    Welcome to the MSDN Forum.

    This is just a quick note to let you know I am performing research on this issue and will get back to you as soon as possible. I appreciate your patience.

    Best regards,


    Mike Feng
    MSDN Community Support | Feedback to us
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Friday, February 10, 2012 6:32 AM
    Moderator
     
     Answered Has Code

    Hi,

    Please try set the AutoScroll property to false.

    Me.DataRepeater1.AutoScroll = False

    I hope this will be helpful.

    Best regards,


    Mike Feng
    MSDN Community Support | Feedback to us
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.