
Originally Posted by
Audun Holme
hey!
SDK version: 2ed 2fp series 60
I'm trying to learn symbian programming. So now I'm trying to create a static list. The code below gives 3 build error (Carbide.C++ marks these lines red: LBUF { txt = ListBox_Item; }, - so I assume it is some errors with these items )...
I don't know what is causing these errors
Any suggestions?
RESOURCE LISTBOX r_test_listbox
{
array_id = r_test_listbox_items;
flags = EAknListBoxSelectionList;
}
RESOURCE ARRAY r_test_listbox_items
{
items = {
LBUF { txt = ListBox_Item1; },
LBUF { txt = ListBox_Item2; },
LBUF { txt = ListBox_Item3; }
};
}