I created 8 panels that contains 6 labels each. I then added these panels to a scrollview (scrollview1). However I am not able to go back and change the value of the labels on the panels that I added to the scrollview.
I have tagged the panels and labels so that I can identify them later in code.
Using a 2 Panel with 2 label example, I believe that I am able to access the scrollview's panels and labels using...
Dim P as Panel
Dim L as label
P.Initialize("")
L.Initialize("")
P = scrollview1.Panel.GetView(0)
L = p.Getview(0)
L.Text = "New text0"
P = scrollview1.Panel.GetView(0)
L = p.Getview(1)
L.Text = "New text1"
P = scrollview1.Panel.GetView(1)
L = p.Getview(0)
L.Text = "New text0"
P = scrollview1.Panel.GetView(1)
L = p.Getview(1)
L.Text = "New text1"
The above does not work for me. Any ideas? Thanks in advance.
I have tagged the panels and labels so that I can identify them later in code.
Using a 2 Panel with 2 label example, I believe that I am able to access the scrollview's panels and labels using...
Dim P as Panel
Dim L as label
P.Initialize("")
L.Initialize("")
P = scrollview1.Panel.GetView(0)
L = p.Getview(0)
L.Text = "New text0"
P = scrollview1.Panel.GetView(0)
L = p.Getview(1)
L.Text = "New text1"
P = scrollview1.Panel.GetView(1)
L = p.Getview(0)
L.Text = "New text0"
P = scrollview1.Panel.GetView(1)
L = p.Getview(1)
L.Text = "New text1"
The above does not work for me. Any ideas? Thanks in advance.