Ei!! i want to set/draw a border of a CEikEdwin...
in a series 60 application i have this code:
CMyContainer::ConstructL()
{
iEdwin = new (ELeave) CeikEdwin;
iEdwin->SetContainerWindowL(*this);
iEdwin->ConstructL();
iEdwin->SetBorder(TGulBorder::EDeepSunken);
}
i tried out this code but still the sunken border doesn't appear in my display...
what else do i need to do to make a sunken border appear around CEikEdwin?