Hi,

While adding an event I am assigning a unique extended property value to 
each event through the below code.

Public Function AddExtendedProperty(ByVal entry As EventEntry) As EventEntry
        MsgBox("Inside AddExtendedProperty function")
        'Dim property1 As New ExtendedProperty()
        Dim updateEntry As New EventEntry()
        property1.Name = "http://www.example.com/schemas/2005#shared";
        property1.Value = property1.Value + 1
        entry.ExtensionElements.Add(property1)
        updateEntry = entry.Update()

        MsgBox("Property Value is" + property1.Value)
        MsgBox("Leaving AddExtendedProperty function")

        Return updateEntry
        
    End Function

After the above code gets executed says my property1.Value = 1 would be 
assigned to an event say event1 and similarly property1.Value = 2 would be 
assigned to event2 and so on...

Now my requirement is to retrieve the events based on this property1.Value 
as in if I give value as "2" to property1.Value then I should be able to 
retrieve event2. how do I do that? 

Please help.

Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" 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/calendar/community/forum.html

Reply via email to