I'm not sure what happened, I think I had the pop up working.
I put most of my layouts in panels, and it doesn't work.
Initialize it in globals...
Dim scvText As ScrollView ' scrollview
I've got this in my activity create
Activity.LoadLayout("longtext")
scvText.Panel.LoadLayout("LongText1")
scvText.Panel.SendToBack
scvText.Panel.Visible = False
And when I like to pop it up, I've got the following code...
Sub Label1_Click
scvText.Panel.BringToFront
scvText.Panel.Visible = True
lblTitle.text ="About"
lblText.text= Label1.text
End Sub