File.WriteList line fails?
What is the error? You can get it from LogCat tab.
Sorry I put that in a confusing way.
The File.WriteList works but I wanted to use the su.SaveCSV and that failed.
This fails.
Dim su As StringUtils
Dim FileName As String
FileName = (NameTxt.Text & ".txt")
Msgbox("FileName Value is " & Filename & "and Dir is " & AppProfileDir, "")
Msgbox("This is the ProfileList " & ProfileList, "")
su.SaveCSV(AppProfileDir, FileName, ",", ProfileList)
The error I get on the line: su.SaveCSV(AppProfileDir, FileName, ",", ProfileList)
is:
java.lang.ClassCastException:java.lang.String
That's all the information in there.
Any idea?
thanks