how to show the calender entry description

Login to reply to this topic.
Thu, 2008-04-10 13:17
Joined: 2007-09-19
Forum posts: 5

hi all,
i create a list box to notify all the events entry in a calender,,now i want to open the description of the entry,for that i used ActivateviewL(),
But not able to get the uid of the description view,,,,,can any body have any solution ,here is my code....

void CCalendarServerObserver::ViewCalEventsL()
{
OpenSession();
CCalIter* iCalIterator = CCalIter::NewL(*iCalSession);
TBuf8<50> iEntryID;
RPointerArray entryArray;
iEntryID = iCalIterator->FirstL();
while (iEntryID != KNullDesC8)
{
// get entries associated with this UID
iEntryView->FetchL(iEntryID, entryArray);
iEntryID = iCalIterator->NextL();
}

  • Login to reply to this topic.