hi there,
i m beginner in symbian,
i want to implement a list box which will contain a find box,
i have seen the same in list control example,
but i m not getting how to implement it?
i tried a bit, but it is giving panic Eikdpage.cpp 2388 when i try to execute the dialog
here i m giving what i have done :
following is my resource :
what might be the problem?
can anybody provide me a sample code?
can i use list box resource with it & add the list box items through coding & not through array resource?
You are trying to launch a dialog from the ConstructL of you new container control...
What you should be doing here is creating a container control (ie based on CCoeControl) which owns two further controls in the form of a (1) listbox and (2) a findbox.
In the listbox example, look for the CreateFindBoxL method to find out how to create a findbox.