Hi Folks,
ich have a problem with bitmaps (Application Icon (Contextpane) and rendering bitmaps in a container.
I use Visual Studio 2005 with the carbide.vs plugin (Windows XP, Nokia E65, Nokia N72). My first attempt to render a application icon in the contextpane was running a batch file after successful build of my app.
This will create the desired files then i see a application icon in my cell phone programms folder@echo off
set PFAD=%cd%
set TargetMBM=EDP.mbm
set SourceMaskBMP=logo_mask.bmp
set SourceBMP=logo.bmp
set TargetMIF=EDP.mif
cd C:\Symbian\9.1\S60_3rd\Epoc32\Data\z\resource\apps
@echo on
C:\Symbian\9.1\S60_3rd\epoc32\tools\bmconv %TargetMBM% /c24%SourceMaskBMP% /c24%SourceBMP%
C:\Symbian\9.1\S60_3rd\epoc32\tools\mifconv %TargetMIF% /c24,1 %SourceBMP%
@echo off
cd %PFAD%
@echo on
and a icon in my contextpane.
I want to create these files while i build my application without run a batch file at my own.
But this does'nt work. I don't see a app icon.START BITMAP MyApp.mbm
TARGETPATH \resource\apps
//HEADER
SOURCEPATH ..\bitmap
SOURCE c24 App.bmp
SOURCE 1 App_mask.bmp
END
START BITMAP EDP.mbm
TARGETPATH \resource\apps
//HEADER
SOURCEPATH ..\bitmap
SOURCE c24 logo.bmp
SOURCE 1 logo_mask.bmp
END
Greetz Franky



