07-10-2012 08:51 AM
Hi,
I like to navigation to happen between the pages.While referring below link
https://developer.blackberry.com/cascades/document
They have the given option of declaring it in header file,while declaring it in the header,I am getting the issues,such as NavigationPane is not under type,and i tried including the imports and Still I am geting the errir
Am i missing anything?Can anybody clear me on this?
Regards
Rakesh Shankar,P
Solved! Go to Solution.
07-11-2012 09:50 AM
Hi,
You need to specify the full namespace when you declare it in the header file
bb::cascades::NavigationPane* m_root
Cheers
Selom
07-11-2012 10:25 AM
Hi that was useful,piece of information.
Regards
Rakesh Shankar.P
07-13-2012 09:58 AM
Write this in header file :
___________
using namespace bb::cascades;
-------------
This way, no full declaration needed when object creation.