App. closed Main E32User-CBase 71
| Fri, 2004-09-17 15:51 | |
|
Hi, I added the ErrRd file to my C:\system\Bootdata directory on the device. After this I ran a program which accesses the database using RDbs object. Its a console application. It runs to completion, doing all that is required of it and then exits with a "App. closed Main E32User-CBase 71" message. what is this error. where can i get the description of other panic codes. Gaurav Jain :Gaurav |
|






:
Forum posts: 205
Best regards,
Michal Laskowski
I am using only one TRAPD macro (they a are not nested). I call this macro in E32Main() function of my console application. why do i still get a E32User-CBase 71 message
Gaurav Jain
Forum posts: 205
Best regards,
Michal Laskowski
CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
TRAPD(error, MyfuctionL()); // more initialization, then do example
__ASSERT_ALWAYS(!error,User::Panic(KTxtPanicConnectDatabase,error));
delete cleanup; // destroy clean-up stack
Gaurav Jain
Forum posts: 364