How to clear the SmartNavigation position programatically?

  • Thread starter Thread starter Carl Mercier
  • Start date Start date
C

Carl Mercier

Hi,

I have a long form that post back to itself at different places. At the
very end, I have a button called "Next" that post back to itself again
but some panels are hidden and some others are shown to simulate a "Next
Page" effect. Since I have many controls that require post back, I need
SmartNavigation to be turned on.

However, when I press "Next" at the end of the page, the scroll position
goes to the very bottom on the second page (where the same "Next" button
is to go to page 3, for example).

My question is, how do I clear the scroller position programatically?

Example (I simplified the code for easy reading)

Private Sub btnGoNextPage_Click
ClearScrollerPosition()
GoNextPage() 'Go to the top of next page
End Sub

Thanks!

Carl
 
Yes, you SmartNavigation programmatically.

Just use Me.Page.SmartNavigation = false

and that should do the trick for you.
 
David,

This is not what I am looking to do. (or maybe it is)

I definately need SmartNavigation, but want to clear the scrollbar
position programmatically. Will turning it off then back on do the
trick you think?

Thanks!

Carl
 
For the record, this trick doesn't work.

Carl



Carl said:
David,

This is not what I am looking to do. (or maybe it is)

I definately need SmartNavigation, but want to clear the scrollbar
position programmatically. Will turning it off then back on do the
trick you think?

Thanks!

Carl
 
Back
Top