I have a list that is created like this;
Dim Header As List = Array("Name", "Status", "Public IP", "Control")
I've found that if I then do this;
Header.Add("New")
B4J 5.5 is throwing this exception;
Caused by: java.lang.UnsupportedOperationException
at java.util.AbstractList.add(Unknown Source)
at java.util.AbstractList.add(Unknown Source)
at anywheresoftware.b4a.objects.collections.List.Add(List.java:71)
Are lists created like this read only?
Dim Header As List = Array("Name", "Status", "Public IP", "Control")
I've found that if I then do this;
Header.Add("New")
B4J 5.5 is throwing this exception;
Caused by: java.lang.UnsupportedOperationException
at java.util.AbstractList.add(Unknown Source)
at java.util.AbstractList.add(Unknown Source)
at anywheresoftware.b4a.objects.collections.List.Add(List.java:71)
Are lists created like this read only?