Check the code below and wondering why Msgbox will not display. I have nothing in that key. or the key never been created. Test.ini does not contain the Key "Test". On the Debug screen Data shows the value Null. What am I doing wrong here?
B4X:
Dim Map1 As Map
Map1 = File.ReadMap(File.DirRootExternal, "Test.ini")
Dim Data As String
Data = map1.Get("Test")
If Data = Null Then
Msgbox("Yes","")
End If