Y YoungHarry Member Licensed User Longtime User Apr 9, 2012 #1 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"?
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 Apr 9, 2012 #2 How about one scrollview, but add 2 panels to it. Then size the scrollviews panel to accommodate the 2 panels? Upvote 0
How about one scrollview, but add 2 panels to it. Then size the scrollviews panel to accommodate the 2 panels?
klaus Expert Licensed User Longtime User Apr 9, 2012 #3 I would use two ScrollViews. It would be easier to manage and the code would clearer. And from the resources point of there wouldn't be a real difference. Best regards. Upvote 0
I would use two ScrollViews. It would be easier to manage and the code would clearer. And from the resources point of there wouldn't be a real difference. Best regards.