Hi there.
I've created a Type like this:
The problem is that I have to do two Initialize calls...
Aside from creating a class, is there a way of avoiding this double initialize requirement?
Thanks,
JMB
I've created a Type like this:
B4X:
Type FlightWaypoint(Name as String, Position as Location)
The problem is that I have to do two Initialize calls...
B4X:
Dim FW as FlightWaypoint
FW.Initialize
FW.Position.Initialize
Aside from creating a class, is there a way of avoiding this double initialize requirement?
Thanks,
JMB