i wrote an application and when i am doing debugging after "return EikStart::RunApplication(NewApplication);" this line in application.cpp file the control is exiting permanently and corrupt message is showing. please help me
You loose controls because all ather actions are executed from symbian librarys, the other places where you can put breakpoint are methods of AppUi class implementation e.g HandleCommandL or its constructor. Mainly in main thread of Ui applications in EikStart::RunApplication(NewApplication) call, ActiveScheduler loop is started.
Forum posts: 49
You loose controls because all ather actions are executed from symbian librarys, the other places where you can put breakpoint are methods of AppUi class implementation e.g HandleCommandL or its constructor. Mainly in main thread of Ui applications in EikStart::RunApplication(NewApplication) call, ActiveScheduler loop is started.