What exactly is your problem ?
If you look at the help file you will see that:
- Spinner1.Add(Item As String) adds a String
- Spinner1.AddAll(List As List) adds a List
I suppose that the Spinner is added in the layout file, if so, you must not initialize it with
spUser.Initialize("spUser")
Try this code:
Sub Activity_Create(FirstTime As Boolean)
Dim UsersList As List
Activity.LoadLayout("Login.bal")
UsersList.Initialize()
UsersList.Add("SQnet")
UsersList.Add("Admin")
UsersList.Add("MyUser")
spUser.AddAll(UsersList)
End Sub
To get the best advices it is better to also post your project as a zip file, or at least a smaller project that shows the problem (IDE menu File/Export As Zip).
Best regards.