how can i solove avkon 0 error

Login to reply to this topic.
Fri, 2007-12-21 07:57
Joined: 2007-07-24
Forum posts: 55

Hi friends,
I am getting avkon 0 error.By reading so many blogs i came to know that
due to text of the listbox its happening.I think there is some prob in formating of the listbox's
text.but i can't track it.
here i have given code what i hv written in my application

GAMES_GRID_ITEM1_TEXT "0\tAudio"
GAMES_GRID_ITEM1_TEXT "0\tvideo"

in my rss file

RESOURCE ARRAY r_airchord_games_grid_items
{
items ={
LBUF{
txt = GAMES_GRID_ITEM1_TEXT;
}
LBUF
{
txt = GAMES_GRID_ITEM2_TEXT;
}
}
}
someone please tell me where i m wrong?
Regards
mitu


Fri, 2007-12-21 08:33
Joined: 2003-09-29
Forum posts: 32
Re: how can i solove avkon 0 error

It might be that you are not setting icon array for your listbox, but you are still referring to index 0 for an icon of both lines. Try removing 0 from the listbox texts:

GAMES_GRID_ITEM1_TEXT "\tAudio"
GAMES_GRID_ITEM2_TEXT "\tvideo"

BTW, in the code you pasted, you have defined GAMES_GRID_ITEM1_TEXT two times and not defined GAMES_GRID_ITEM2_TEXT. This might cause some problems as well.


Jari

Fri, 2007-12-21 10:48
Joined: 2007-07-24
Forum posts: 55
Re: how can i solove avkon 0 error

Thanks for reply, i have solved it.But here i have created static list using rss file.
for dynamic list with grid view what should i do please share me .the list items coming from server which i have to update.
thanks
mitu

  • Login to reply to this topic.