hi
i want my app to show a wallpaper from beginning to end.
then i add the below to my mmp file.
---------------------------------------
START BITMAP myapp.mbm
HEADER
SOURCEPATH ..\pic
TARGETPATH system\apps\myapp
SOURCE c24 Logo.bmp
END
---------------------------------------
and in the ui.cpp
add the code below
-----------------------------
#include <eikenv.h>
#include <MP3Player.rsg> // resource file use
#include <MP3Player.mbg> // Bitmap enumeration
#include <aknutils.h>
................
_LIT(KDrawBitmapPath, "\\system\\apps\\myapp\\myapp.mbm");
TFileName bitmapFile (KDrawBitmapPath);
User::LeaveIfError (CompleteWithAppPath (bitmapFile));
iEikonEnv->CreateBitmapL(bitmapFile, 0);
-----------------------------
but nothing showed up?
and when i closed my app, the message showed up
------------
myapp has been closed, cone 8
------------
what's wrong? any conclusion?




