hidden tabs

Login to reply to this topic.
Sat, 2008-07-05 07:12
Joined: 2008-06-27
Forum posts: 17

hi, i have three tabs in my app. and i created a text editor box, in a container.
Now im able to see the text editor but tabs got hidden.plz reply soon
i used the following code in the container:

void CMultiViewsContainer1::ConstructL(const TRect& aRect)
{
CreateWindowL();

iEditor = new (ELeave) CEikEdwin;
iEditor->SetContainerWindowL(*this);
TResourceReader reader;
CCoeEnv::Static()->CreateResourceReaderLC(reader, R_PLAINTEXTEDITOR_EDITOR);
iEditor->ConstructFromResourceL(reader);
CleanupStack::PopAndDestroy(); // reader
iEditor->SetFocus(EFalse);
iAppUi =(CMultiViewsAppUi *)(CEikonEnv::Static()->AppUi());
SetRect(aRect);
ActivateL();

  • Login to reply to this topic.