B4J Question How to add class parent?

XorAndOr

Active Member
Licensed User
Longtime User
Hi everyone, I have a project that uses multiple "parent" class modules,
and every time I have to copy and paste the sub (public sub show)
and (initialize (parent as form) or keep an empty .bas file and rename it.
Do you know a way without copying and pasting the code?
Thank you

B4X:
Sub Class_Globals
    Private fx As JFX


End Sub

Public Sub Show    

    
End Sub


'Initializes the object. You can add parameters to this method if needed.

Public Sub Initialize(Parent As Form)    
        
    
End Sub
 
Top