Hi All,
Is there a way to check for a NULL in the code below. If I can test for Null I can work around the problem and determine why I get the Null. [I think its me]
At best this problem is pretty random so I don't think I can make a demo.
I have found ways that are supposed to check for Null but not exactly the same situation and therefore they don't work
I have tried "If X = Null then" but throws a Null Error rather that follow the code.
I have tried making X an Object, same result.
Any suggestions welcome.
Regards Roger
Is there a way to check for a NULL in the code below. If I can test for Null I can work around the problem and determine why I get the Null. [I think its me]
At best this problem is pretty random so I don't think I can make a demo.
I have found ways that are supposed to check for Null but not exactly the same situation and therefore they don't work
I have tried "If X = Null then" but throws a Null Error rather that follow the code.
I have tried making X an Object, same result.
B4X:
Private Results(16,5,2) As String
Private Results2 (,,) As String
Results2 = kvs.GetObject("Results")
'Reload "Results" array from Results2
For FNM = 0 To 15
For STEPS = 0 To 4
For DATA2 = 0 To 1
Results(FNM,STEPS,DATA2) = Results2(FNM,STEPS,DATA2)
Next
Next
Next
Any suggestions welcome.
Regards Roger