how to solve this problem?
-------
ERROR
------
undefined identifier 'CsplashnewApplication' splashnewApplication.cpp splashnew/src line 38 July 10, 2006 1:14:35 PM 3791
how to solve this problem?
-------
ERROR
------
undefined identifier 'CsplashnewApplication' splashnewApplication.cpp splashnew/src line 38 July 10, 2006 1:14:35 PM 3791
You probabaly forgot to include the H-file where CsplashnewApplication is declared.
I think you'd better read a book on C++ because all the errors you have (I mean from your other posts too) are more related to general C++ but not Symbian development.
Regards,
ivey
Its not such ivey, i had defined all the header files needed still getting this error!
whts this error? DOes any one help me out solving this?
THere is problem in the underlined code.
CODE
void CsplashnewAppUi::ConstructL()
{
BaseConstructL();
iAppContainer = new (ELeave) CsplashnewView;
---------------------------------------------
iAppContainer->SetMopParent(this);
iAppContainer->ConstructL( ClientRect() );
AddToStackL( iAppContainer );
}
ERROR
illegal use of abstract class ('MCoeControlObserver::HandleControlEventL(CCoeControl *, MCoeControlObserver::TCoeEvent)') splashnewAppUi.cpp splashnew/src line 31 July 10, 2006 2:11:13 PM 3867
Probably CsplashnewView is derived from MCoeControlObserver but HandleControlEventL() method is not defined in CsplashnewView.
You should have the following in your H-file:
void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType);
And in your CPP-file:
void CsplashnewView::HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType)
{
}
Regards,
ivey
ivey can u plz provide me some sample code for the splash screen which can run on nokia s60 series 3rd edition??? so tht i can get some idea for building my application.
jignasha,
I think it would be useful for you to skim over the SDK examplesI'm sure there are examples which will set you on the right track.
Regards,
ivey
ivey ur right !![]()
but there r not examples for splash screen given , give me the link for examples of splash screen using carbide c++ and third edition if u know.
plz
![]()
Sorry, I don't have such examples. Try searching the forum
Regards,
ivey
Then the issue which was about the undefined identifier has been solved? I think the floor 5 may be right![]()