In B4A I have:
Public Obj_library As library01
Public Obj_library_g As library01g
Public Obj_library_t As library01t
where library01, library01g and library01t are libraries - all with the same methods.
I want to be able to change Obj_library at run time to either library01g or library01t
how do i do it?
I have tried:
Obj_library.As(library01g)
and
Obj_library = Obj_library_g
but neither works, ObJ_library retains its initial setting.
Public Obj_library As library01
Public Obj_library_g As library01g
Public Obj_library_t As library01t
where library01, library01g and library01t are libraries - all with the same methods.
I want to be able to change Obj_library at run time to either library01g or library01t
how do i do it?
I have tried:
Obj_library.As(library01g)
and
Obj_library = Obj_library_g
but neither works, ObJ_library retains its initial setting.