How to move controls among Forms

diego

Member
Licensed User
Longtime User
is there any way to move (like Cut&Paste) some controls from a Form to another one?

(I have too much controls in the starting form and I want to make another form)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Using modules you can duplicate forms:
- Create a new module.
- Open the form in the designer and choose Tools - Move To - 'new module'.
- Save your project.
- Now you can make any number of copies to this module file ('new module.bas') and add it to your project.
- If you like you can move the original form back to the main module.
 
Top