In the application I use many code modules (equivalent to android Activity).
W I know that in ios it works completely different, on a hierarchy basis.
How can I refresh?
In androids, I do it like this.
In the application I use many code modules (equivalent to android Activity).
W I know that in ios it works completely different, on a hierarchy basis.
How can I refresh?
In androids, I do it like this.
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
ResetLayout
NavControl.ShowPage(Page1)
End Sub
Private Sub ResetLayout
Page1.RootPanel.RemoveAllViews
Page1.RootPanel.LoadLayout("1")
End Sub
Sub button1_Click ' reset
ResetLayout
End Sub
I'd also like to reset all the variables from the Sub Process_Globals
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.