from google contacts api:
<gd:extendedProperty name='pet1' value='Cat'/>
<gd:extendedProperty name='petname1' value='Zora'/>
<gd:extendedProperty name='pet2' value='Cat'/>
<gd:extendedProperty name='petname2' value='Charly'/>
<gd:extendedProperty name='pet3' value='Cat'/>
<gd:extendedProperty name='petname3' value='Lucky'/>
<gd:extendedProperty name='SexualPreference' value='69'/>
Yes. Add the following Type to ContactsUtils:Hi,
Is there any way to get Contact's "Job Title: Field. I cannot find any reference for that.
Thanks,
David.
Type cuOrganization(Company As String, Title As String)
Public Sub GetOrganization(Id As Long) As cuOrganization
Dim organizations As List = GetData("vnd.android.cursor.item/organization", Array As String("data1", "data4"), _
Id, Null)
Dim o As cuOrganization
If organizations.Size > 0 Then
o.Initialize
Dim obj() As Object = organizations.Get(0)
o.Company = obj(0)
o.Title = obj(1)
End If
Return o
End Sub