{"Version":"3.94dg","Error":"java.lang.RuntimeException: Object should first be initialized (List).","Stack":"java.lang.RuntimeException: Object should first be initialized (List).........
What is the easiest way to investigate which list is causing this? I see the name of the sub, but I need to know the list name to check why this happens.
The key lines are:
at ciris.chauffeur.opdrachten._doen(opdrachten.java:1597)
at ciris.chauffeur.opdrachten._btndoen_click(opdrachten.java:860)
They are you original subs.
The relative java file is ciris.chauffeur.opdrachten
In Object/src/ciris/chauffeur/opdrachten.java go to the line number (actual line number in editor).
Just prior to that are comment lines that represent the B4A source file.
Look for calls to doen and btndoen.
(make sure to look at the files that were used to release the version where the error was found)
This not always happening and not during my development and tests. It has something to do with specific use and I need to know when it happens. That way I can check during development connected to my device.
The key lines are:
at ciris.chauffeur.opdrachten._doen(opdrachten.java:1597)
at ciris.chauffeur.opdrachten._btndoen_click(opdrachten.java:860)
They are you original subs.
The relative java file is ciris.chauffeur.opdrachten
In Object/src/ciris/chauffeur/opdrachten.java go to the line number (actual line number in editor).
Just prior to that are comment lines that represent the B4A source file.
Look for calls to doen and btndoen.
(make sure to look at the files that were used to release the version where the error was found)
The key lines are:
at ciris.chauffeur.opdrachten._doen(opdrachten.java:1597)
at ciris.chauffeur.opdrachten._btndoen_click(opdrachten.java:860)
They are you original subs.
The relative java file is ciris.chauffeur.opdrachten
In Object/src/ciris/chauffeur/opdrachten.java go to the line number (actual line number in editor).
Just prior to that are comment lines that represent the B4A source file.
Look for calls to doen and btndoen.
(make sure to look at the files that were used to release the version where the error was found)
In Object/src/ciris/chauffeur/opdrachten.java go to the line number (actual line number in editor).
Just prior to that are comment lines that represent the B4A source file.
Huidigen.Initialize
Huidigen=DBUtils.ExecuteList(Main.SQL1,"SELECT Huidige FROM "&Main.DBAanvulling&" WHERE OpdrachtID="&OpdrachtID,Null,0)
For i=0 To Huidigen.Size - 1
It seems on DBUtils.ExecuteList the Initialize will be gone after no result or something. I think the Huidigen.Size does the crash because of this. I will do more testing.