There are two possible locations for libraries. One is internal, in the location that Basic4android is installed and the other is configured under Tools - Configure Paths. In one of them you will find older version of these files.
Which error message do you get?
newSteve, your error is most likely related to an old internal library that is located in the additional libraries path.
If the additional libraries path is blank, where should I look? I'm not finding anything.
If I uninstall and reinstall the new version, will that work?
Make sure that there are no old copies of: Core.jar, Core.xml or BAShared.jar in your additional libraries folder.
Sub chgname
Dim lt, ans As Int
Dim mycw As List
mycw.Initialize
lt = RecordCount
For l = 0 To lt -1
Pointer = l
GetRecord
mycw = Regex.Split(" ", Field(0))
If mycw.Size = 2 Then
Field(0) = s.Trim(mycw.Get(1)) & ", " & s.Trim(mycw.Get(0))
UpdateRecordNameSwap
End If
If mycw.Size = 3 Then
Field(0) = s.Trim(mycw.Get(2)) & ", " & s.Trim(mycw.Get(0)) & " " & s.Trim(mycw.Get(1))
UpdateRecordNameSwap
End If
Next
Pointer = 0
GetRecord
mycw.Clear 'Throws an error - Java.lang.type
End Sub
Isn't regex.split supposed to return an array of strings, thus we should denote our list as an array, for e.g. dim myArray() and then myarray=regex.split(your stuff) ? Just a thought.Any ideas on the above post?
mycw.AddAll(Regex.Split(" ", Field(0)))
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?