I'm at a little standstill. I think it's because of lack of sleep.
I can download and parse XMLs with no problem. However, I can't parse the second XML until I have some data from the first XML. (It has a location.)
I need to wait until I've completely parsed the first XML before retrieving & parsing the second XML.
Do I use CallSubDelayed for that? Something like:
If not, is there a good way to do this? Thanks in advance.
I can download and parse XMLs with no problem. However, I can't parse the second XML until I have some data from the first XML. (It has a location.)
I need to wait until I've completely parsed the first XML before retrieving & parsing the second XML.
Do I use CallSubDelayed for that? Something like:
B4X:
'both subs are in same module
CallSubDelayed(Me, "GetSecondXML")
If not, is there a good way to do this? Thanks in advance.