How do you 'populate' the internal Panel of the ScrollView ?
If you do it like in the example I suggested you you have several heights:
- The ScrollView.Height, that up to you to define it it's the visible part on the screen.
- The Panel you defined in the designer, its height can be higher than the ScrollView height and even higher than the screen.
- You must load this layout file to the ScrollView.Panel with ScrollView1.Panel.LoadLayout("xxx")
- You must set the height of the internal panel of the scrollview to the height of the panel you defined in the designer ScrollView1.Panel.Height = Panel1.Height.
If the height of the internal panel of the scrollview is less than the height of the scrollview itself there is of course no scrolling.
Otherwise post your project as a zip file (IDE menu Files / Export As Zip) so I could have a look at it.
Best regards.