I'm symbian newbie developer. I want to create popuplist and show amr file in my popuplist but i duno ... how can i show amr file in popuplist? The code below is my popuplist and it's show me no data... Plz help me to solve this problem ( T _ T )
// Create PopupList Here...
CAknDoubleNumberStyleListBox* List = new (ELeave) CAknDoubleNumberStyleListBox;
CleanupStack::PushL(List);
CAknPopupList* popupList = CAknPopupList::NewL(List, R_AVKON_SOFTKEYS_OK_BACK);
CleanupStack::PushL(popupList);
popupList->SetTitleL(_L("Select Sound :"));
List->ConstructL(popupList,CEikListBox::ELeftDownInViewRect);
List->CreateScrollBarFrameL(ETrue);
List->ScrollBarFrame()->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto);
// Show Menu in Popup List
popupList->ExecuteLD();
CleanupStack::Pop(); // popupList
CleanupStack::PopAndDestroy(); // List
Thx a lot from ur help



