Are you running the example from the first post?
Can you post a screenshot?
The example in the first post works when you run it without modification. If, however, you incorporate it with code that has other layouts (especially with scrollviews), you get unpredictable results. The cause seems to be that the resize sub is not being executed with the required width and height. While testing you can temporarily get around the issue by forcing the resize (see below), however this is not a solution.
Private Sub Page1_Resize(Width As Int, Height As Int)
adp.Resize(320, 386)
End Sub