Scroll View Question.

YoungHarry

Member
Licensed User
Longtime User
Can I associate more than one oversize panel with one scroll view, making one invisible and one visible as needed?
Such as:

Activity.LoadLayout ("Main")
scvTest.Panel.LoadLayout ("ScrollViewLayout") 'two panels in this layout
scvTest.Panel.Height = pnlTest01.Height
scvTest.Panel.Height = pnlTest02.Height

or do I need 2 scroll views in "Main"?
 

barx

Well-Known Member
Licensed User
Longtime User
How about one scrollview, but add 2 panels to it. Then size the scrollviews panel to accommodate the 2 panels?
 
Upvote 0
Top