How to draw custom icons?
I think your question is not related to programming languages. BTW, you can use softwares to draw: GIMP (open source), photoshop, easy icon maker, etc. There are many other softwares available in the market, try use a search engine to look for them.
and if it is programming question, then you might want to specify a bit more on what and where ?
yucca
Hai Yucca,
I want to use the icons used in aknExList(ListBox) Sample in S60_2nd_FP3 SDK.I copied the bitmaps(checkBoxes) used in that example to my application and added to myapplication.mmp File.By default the enumarators will be in myapplication.mgb File.But there are no enumarators to the added bitmaps though I have added the bitmaps in .mmp File.
basically you can also do it without the enumerations (if they are mbm files), just use zero based indexing when loading the icons into the icon array.
Then modify the strings you add to the listbox to use correct icons, in there the icon index is also zero based.
yucca
Hai Yucca,
When I add the Bitmaps to the myapplication.mmp File Iam getting the error as
FATAL ERROR: ERROR: Duplicate bitmap target "Z\SYSTEM\APPS\myapplication.\myapplication..MBM"
not sure why there are two dots before the mbm, could you check if it is a typo.
Never seen this error, but maybe you are trying to add same bitmap twice into the mbm, would actually generate two id with different number & same name, thus could be something that is not allowed to be done..
yucca