Question Google Calendar API Issue

Funkydrummer57

New member
Joined
Oct 7, 2011
Messages
1
Programming Experience
5-10
I'm looking for some assistance with google calendar api and VB.NET. As i'm sure most of you know the code is sparse for VB.NET using google API.
I seem to only be able to find 2 portions of data using the Atomfeed:
VB.NET:
entry.Title.Text
and
VB.NET:
entry.Content.Content

The title entry is working perfectly however the Content.Content Returns all the rest of the calendar data Date Time and Details.
I was wondering if anyone with some experience with this knew the syntax for returning specific value of Date, Time and Details separately.

Here is the full code:

VB.NET:
 Dim gfeed As FeedQuery = New FeedQuery()        Dim service As Service = New Service("ci", "UVM-ScheduleRevision-1")
        gfeed.Uri = New Uri("https://www.google.com/calendar/feeds/funkydrummer57%40gmail.com/public/basic")


        Dim calFeed As AtomFeed = service.Query(gfeed)


        For Each entry As AtomEntry In calFeed.Entries
            where.Text = entry.Title.Text
            whentime.Text = entry.Content.Content
            details.Text = entry.Content.Content
        Next

Thanks in advance
 
Back
Top