ArminKH
Well-Known Member
hi
if you see Picasso lib we have so subs in this library
and one of this subs is "LoadFile" but on this sub we have too many other subs such as Fetch and...
now i want to create a library which that has child subs to one parent sub(Subs to Sub)
maybe my code can be similar to following codes
how is possible same future on B4A??!!
thanx to all
if you see Picasso lib we have so subs in this library
and one of this subs is "LoadFile" but on this sub we have too many other subs such as Fetch and...
B4X:
dim Picasso1 as Picasso
Picasso1.LoadFile.Fetch
maybe my code can be similar to following codes
B4X:
Sub Result
Sub male() As String
Return "Male"
End Sub
Sub Female() As String
Return "Female"
End Sub
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim A As MyLib
Log(A.Result.male)
End Sub
thanx to all