Frst off - thanks so much to all for the help - learning a lot here with all suggestions.
Actually my provided code example is correct (my bad with having a space after the Load in my initial example) in that it calls the panel in a further sub (for other programmatic reasons) example follows:
Sub buttonV2_Click
LoadPageV3
End Sub
.
.
.
Sub LoadPageV3
panel03.Initialize("panel03")
Activity.AddView(panel03, 0, 0, 100%x, 100%y)
panel03.LoadLayout("page03")
End Sub
.
.
.
Sub buttonV3_Click
LoadPageV4
End Sub
.
.
.
Sub LoadPageV4
panel04.Initialize("panel04")
Activity.AddView(panel04, 0, 0, 100%x, 100%y)
panel04.LoadLayout("page04")
End Sub
.
.
.
etc.
Right now I'm trying to consolidate all the buttonVX_clicks into one sub - then I'll tackle consolidating the panel subs down the road...