Android Question [B4X] B4XPages - ShowPage with Parameters like CallSubDelayed2

Erel

B4X founder
Staff member
Licensed User
Longtime User
Once you understand how simple it is, you will realize that none of these things are needed.

B4X:
Page2.SomeSubThatConfiguresEverythingNeeded(a, b, c, 100, 200)
B4XPages.ShowPage("page 2")

You can also call methods of the previous page from page 2. Nothing is ever paused.

Tip: Call B4XPages.AddPageAndCreate if you want to be sure that the layout of the page is ready, even before it is shown.
 
Upvote 0
Top