below code giving panic KERN - EXEC 3 . what could be the reason? I am trying to insert the values of array in the listbox in InitializeControlsL() method. but when it comes back to below function it gives panic KERN - EXEC 3 at SetRect( aRect ) line.
void CSymbianContainer3::ConstructL(
const TRect& aRect,
const CCoeControl* aParent,
MEikCommandObserver* aCommandObserver )
{
if ( aParent == NULL )
{
CreateWindowL();
}
else
{
SetContainerWindowL( *aParent );
}
iFocusControl = NULL;
iCommandObserver = aCommandObserver;
InitializeControlsL();
SetRect( aRect ); //this line giving Panic KERN - EXEC 3
ActivateL();
}





