Thanks Alain.

After modifying my code to be a query search, for some reason it is only 
returning 25 records, even when I specify PageSizes on the Request and the 
Query.

Dim rs As New RequestSettings(varDomain, varCurrentName, varCurrentPW)
rs.AutoPaging = True
rs.PageSize = 10000
Dim cr As New ContactsRequest(rs)
Dim query As New ContactsQuery(ContactsQuery.CreateContactsUri("default"))
query.Query = "TEXT TO IDENTIFY CONTACT"
query.NumberToRetrieve = 10000
Dim feed As Feed(Of Contact) = cr.[Get](Of Contact)(query)
For Each varContact As Contact In feed.Entries

Response.Write("<font size=1>" & varContact.Title & "<BR></font>")

Next

-- 
You received this message because you are subscribed to the Google
Groups "Google Contacts, Shared Contacts and User Profiles APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/contacts/community/forum.html

Reply via email to