'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim lst As List
Dim i, j, ColCount, RowCount As Int
Dim su As StringUtils
lst = su.LoadCSV(File.DirAssets, "myvalues.csv", ",")
RowCount=lst.Size
ColCount=11
Dim MyArray(RowCount, ColCount), aRow() As String
For i=0 To RowCount-1
aRow=lst.Get(i)
For j=0 To ColCount-1
MyArray(i, j)=aRow(j)
Next
Next
Log(MyArray(6, 0))
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub