Android Question contac object does not return contacts

kalarius

Active Member
Licensed User
Longtime User
dim cu as contacts2

Dim cuContacts As List
cuContacts.Initialize
For Each c As Contact In cU.GetAll(True,False)
Dim Epafh As ep
Epafh.DisplayName=c.DisplayName
Epafh.Id=c.Id
cuContacts.add(Epafh)

Next
cuContacts.SortType("DisplayName",True)

the cu.getall does not return anything
Epafh is a type declared at startup


B4A ver =6.0
android ver 4.2.2
 
Top