Hi,
All
I am new learner of Symbian C++ ..... S60. I have designed a list box ..
RESOURCE LISTBOX r_akn_My_list
{
array_id = r_akn_My_list_items;
flags = EAknListBoxSelectionList;
}
RESOURCE ARRAY r_akn_My_list_items
{
items =
{
LBUF
{
txt = str_default_My_entry1; // defined in MylistBox.loc
},
LBUF
{
txt = str_default_My_entry2;
},
LBUF
{
txt = str_default_My_entry3;
}
};
}
Now i want to display three froms say form1 form2 and form3 ... ... ... when i select any list box and press ok (CBA) ... it should open respective form..... say...............
Listbox "str_default_My_entry1" should open form1;
Listbox "str_default_My_entry2" should open form2;
Listbox "str_default_My_entry3" should open form3;
Please help me out .... where and how can I handle these events ....???




