Hi,
i am working on an application and using picasa api . As i want to
retrieve the name of private album with the code given below i only
can retrieve the public album only , i want public as well as private
album name...waiting for the reply as i am working in c# .net windows
form
=====================================================


PhotoQuery query = new
PhotoQuery(PicasaQuery.CreatePicasaUri(username));
query.NumberToRetrieve = 10;
PicasaFeed feed = service.Query(query);

foreach (PicasaEntry entry in feed.Entries)
{
Messagebox.Show(entry.Title.Text);
}

-- 
You received this message because you are subscribed to the Google Groups 
"iGoogle Developer Forum" 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://groups.google.com/group/Google-Gadgets-API?hl=en.

Reply via email to