M mvera Active Member Licensed User Longtime User Dec 26, 2017 #1 Hi. I occupy b4a and I want to continue learning b4j. It is not clear to me how to create another screen. something like : screen 1 screen 2
Hi. I occupy b4a and I want to continue learning b4j. It is not clear to me how to create another screen. something like : screen 1 screen 2
Daestrum Expert Licensed User Longtime User Dec 26, 2017 #2 When you say screen, do you mean another window like Mainform? If so, then B4X: ... Dim myform As Form myform.Initialize("myform",300,300) myform.Title = "my new window" myform.show ... will create and display a new window. Upvote 0
When you say screen, do you mean another window like Mainform? If so, then B4X: ... Dim myform As Form myform.Initialize("myform",300,300) myform.Title = "my new window" myform.show ... will create and display a new window.
Erel B4X founder Staff member Licensed User Longtime User Dec 27, 2017 #3 Check the three pages example for a simple pattern to handle multiple forms: https://www.b4x.com/android/forum/threads/getting-started-examples.57537/#content Upvote 0
Check the three pages example for a simple pattern to handle multiple forms: https://www.b4x.com/android/forum/threads/getting-started-examples.57537/#content