Can anyone see what i am doing wrong here. When i read the record back i do not get any items in the columns even though when i check the listofmaps all looks ok?
:BangHead:
:BangHead:
B4X:
Names.Initialize
Names.AddAll(Array As String("Company","Contact","Street","Suburb","Postcode","City","email","Phone","Mob","UserName","UserEmail"))
For i = 0 To pnlRego.NumberOfViews-1
If pnlRego.GetView(i) Is EditText Then
Dim ET As EditText = pnlRego.GetView(i)
If ET.Text="" Then
.....
End If
M.Put(Names.Get(i), ET.Text)
Log(Names.Get(i) & " " & ET.Text)
End If
Next
ListOfMaps.Add(M)
DBUtils.InsertMaps(Main.SQL,"Table", ListOfMaps)