how can I get all children in Inbox of "Message" application

Login to reply to this topic.
Fri, 2005-08-05 12:47
Joined: 2004-08-16
Forum posts: 98
Hi, who can tell me how I can get all the messages in inbox in "message" application.
The children can be sms or mms, visible or invisible.
I can only get the visible messages (sms, mms and so on) through CMsvEntry::ChildrenL();

Fri, 2005-08-05 13:01
Joined: 2004-12-03
Forum posts: 192
Re: how can I get all children in Inbox of "Message" application
Code:
TMsvSelectionOrdering ordering;

ordering.SetShowInvisibleEntries(ETrue);
cEntry->SetSortTypeL(ordering);
  • Login to reply to this topic.