load activity

f4u5t

Member
Licensed User
Longtime User
i want to add a second screen to my app, Ive gathered I should make a separate activity for my next page.
Could someone please post an example of how this is done, I cant find one
 

Jomagom

Member
Licensed User
Longtime User
First you create a new layout from Project / Add New Module / Activity Module.
Then to call it from any button using:

sub Button1_Click
StartActivity ("Layout Name").
End Sub

Sorry for my English
a Greeting
Jomagom
 
Upvote 0
Top