Problem with List box (please help)
| Fri, 2007-07-27 10:02 | |
|
In my application, i inserted one list box. After running it, I can see scroll bar I'm trying it on Series 60 3rd Edition, FP1 Here is my Listbox code............ void CNew_ListBoxAppView::CreateListBoxL(const TRect&/* aRect*/) |
|






Forum posts: 93
hi,
What u want to say
http://wiki.forum.nokia.com/index.php/How_to_create_a_simple_listbox
Thanks & Regards,
C Singh
Forum posts: 24
Thanks yaar. Done with that problem, but now facing another problem.
I have 2 listboxes. When i select an item from 1st listbox, my 2nd listbox pops up (for showing more details abt selected item in 1st list box). I also done for displaying 2nd listbox.
But the problem is that, when i tries to scroll 2nd list, automatically 1st list comes up. (means on scrolling 2nd list, immediatelly, intems from 1st list get displayed on the screen)
Thanks.
Forum posts: 148
Hi
are you using the same array to display the items of 2nd listbox ... If yes then in OfferKeyEventL pls reset your array. Use these
Reset(); Compress(); This is working fine for me....
BR
Isha
"To the question of your life , you are the only Answer. To the problems of your life,you are the only Solution".
Forum posts: 24
Thanks for your help, isha.
I solved that problem.
I used "delete iListBox_1" while creating 2nd list. & now 2nd lisr can work properly
Thanks everybody