watesoft Active Member Licensed User Longtime User Oct 24, 2020 #1 In VB: Dim F as Form set F=new Form1 F.show In B4A, How to do it?
klaus Expert Licensed User Longtime User Oct 24, 2020 #2 What exactly do you want to do? In B4A you can have only one Activity active. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 25, 2020 #3 There can only be a single instance of each activity. Upvote 0
watesoft Active Member Licensed User Longtime User Oct 25, 2020 #4 Erel said: There can only be a single instance of each activity. Click to expand... Ok,I make a copy for activity Upvote 0
Erel said: There can only be a single instance of each activity. Click to expand... Ok,I make a copy for activity
Erel B4X founder Staff member Licensed User Longtime User Oct 25, 2020 #5 watesoft said: Ok,I make a copy for activity Click to expand... This is the wrong solution. You should instead implement whatever you can in a class and create two instances of this class. Tip: the quicker you switch to B4XPages, the quicker everything will be simpler. You can create multiple copies of a B4XPage. Upvote 0
watesoft said: Ok,I make a copy for activity Click to expand... This is the wrong solution. You should instead implement whatever you can in a class and create two instances of this class. Tip: the quicker you switch to B4XPages, the quicker everything will be simpler. You can create multiple copies of a B4XPage.