My prob is that, when i set SetVScrollBarPosition property to 0, it does not come into effect if i set it at initial level, but only if i set this property after a single page change to next page or specific no. of page and that also with some flik in page as if first it goes to its default scroll position than after moves to 0.
could you please help me to get rid of it and let my scroll position always at 0 ?
my code is as bellow which is working find but with the prob. i've mentioned.
- Code: Select all
GdViewer1.DisplayFrame (ListView1.SelectedItem.Index)
GdViewer1.SetVScrollBarPosition (0) '25-Mar-2010
But following code wont work
- Code: Select all
GdViewer1.SetVScrollBarPosition (0) '25-Mar-2010
GdViewer1.DisplayFrame (ListView1.SelectedItem.Index)
With Above code scrollbar wont move to top before loadign a page or next page. Even if i set this property at the time of loading a file it does not come into effect.
Please advice.

