No, he is running KitKat, anyway I was able to reproduce here the bug, with my Lollipop device connected to USB.
The error appear in a sub of the main activity, the last line of this code:
Dim websynctable As Map
websynctable.Initialize
If File.Exists(AppPath, "WebSyncRDC.ini") Then
websynctable = File.ReadMap(AppPath, "WebSyncRDC.ini")
MySub.RDC_Password1=websynctable.Get("RDC_Password1")
MySub.Fwd_Enabled=websynctable.Get("Fwd_Enabled")
The error is caused by a mismatch between the variable type and the value stored in the map, so I have solved, but why the sub name is not wisible in the error ?
Also if I run in debug mode, the program end with the error in the log windows (without the sub name where occoured) but the IDE does not halt on the line of the error.
I had to run it step by step to see wich was the wrong line .