Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("1")
File.Copy(File.DirAssets,staffDB,File.DirInternal,staffDB)
sql_staff.Initialize(File.Dirinternal, staffDB, False)
Dim m As List
m = DBUtils.ExecuteMemoryTable(sql_staff, "SELECT name FROM staff;", Null,0)
If m = Null Or m.IsInitialized = False Then 'Null will return if there is no match
Else
If m.Size = 1 Then
End If
End If
Currencies.SetItems(m)
End Sub