Solve Symbian System Error - 1001
Well if you also happen to receive System Error -1001. Then probably it might be due to any missing .mbm file as it happened in my case.
The error codes in the range of -1000 to -1003 is allocated to Bafl (can be found in basched.h).
const TInt KErrExtended=(-1000);
const TInt KErrExtendedWithText=(-1001);
const TInt KLeaveWithoutAlert=(-1002);
const TInt KLeaveExit=(-1003);
If your program works fine on the emuator and causes problem on Phone (i.e error code -1001) then in that case you might be missing some .mbm file or bitmap in your .pkg file or the path of the file might be wrong.
Well if you also happen to receive System Error -1001. Then probably it might be due to any missing .mbm file as it happened in my case.
The error codes in the range of -1000 to -1003 is allocated to Bafl (can be found in basched.h).
const TInt KErrExtended=(-1000);
const TInt KErrExtendedWithText=(-1001);
const TInt KLeaveWithoutAlert=(-1002);
const TInt KLeaveExit=(-1003);
If your program works fine on the emuator and causes problem on Phone (i.e error code -1001) then in that case you might be missing some .mbm file or bitmap in your .pkg file or the path of the file might be wrong.
0 comments:
Post a Comment