B4J Question create another screen

mvera

Active Member
Licensed User
Longtime User
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
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
Top