Multiple CScrollViews in the same app
-
I have an application that has multiple CScrollViews defined in it. Everything works just fine in the one CScrollView right up to the point that I have to have scrollbars in the second view. At this point then neither scroll bar performs correctly. I have set the properties of each scroll bar seperately in each views OnInitialUpdate() method. In these methods I calculate the vertical range of the scroll bars. Each view has its own OnVScroll method. When I only have a single scroll bar set in a view then I can reach both the upper limits and the lower limits of the scroll bar. However, when the second view comes into view and the scroll bar is set up I can no longer reach the lower limits of the first scroll bar. Are these two views using any shared properties? Any ideas on where to start searching for the bug? Thanks, -Eric
-
I have an application that has multiple CScrollViews defined in it. Everything works just fine in the one CScrollView right up to the point that I have to have scrollbars in the second view. At this point then neither scroll bar performs correctly. I have set the properties of each scroll bar seperately in each views OnInitialUpdate() method. In these methods I calculate the vertical range of the scroll bars. Each view has its own OnVScroll method. When I only have a single scroll bar set in a view then I can reach both the upper limits and the lower limits of the scroll bar. However, when the second view comes into view and the scroll bar is set up I can no longer reach the lower limits of the first scroll bar. Are these two views using any shared properties? Any ideas on where to start searching for the bug? Thanks, -Eric
My first option would be to look into the view updating mechanism. Is it possible that one view is being updated (via
OnUpdate
) with data that is meant for the other? Regards, João Paulo