Hello all ~
I am a beginner to learn Symbian. Coding as follows:
RESOURCE LISTBOX r_dongxing_saved_games_listbox
{
flags = EAknListBoxMarkableList;
}
I want to add a find pane to this list:
RESOURCE DIALOG r_listdlg_dialog
{
flags = EAknDialogMarkableList;
buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
items =
{
DLG_LINE
{
type = EAknCtSingleGraphicListBox;
id = ESelectionListControl;
control = LISTBOX
{
flags = EAknListBoxMarkableList;
// array_id = r_listdlg_list_array;
};
},
DLG_LINE
{
itemflags = EEikDlgItemNonFocusing;
id = EFindControl;
type = EAknCtSelectionListFixedFind;
}
};
}
How to combine these two parts together and how to run the dialog?



