Hi,
I am trying to create an underlined label. Label text is underlined, when i run the application on the emulator, however on actual device it is not showing Underlined text. I am testing the application, on Nokia N91 and N97.
//code
_LIT(KTextrajeevsahu, "www.rajeevsahu.com");
iLabel = new (ELeave) CEikLabel;
iLabel->SetContainerWindowL( *this );
iLabel->SetTextL(KTextrajeevsahu);
iLabel->SetUnderlining(ETrue);
iLabel->SetLabelAlignment(ELayoutAlignCenter);
const CFont* aPlainFont = LatinBold19();
iLabel->SetFont(aPlainFont);
iLabel->OverrideColorL( EColorLabelText, KRgbDarkGreen );
iLabel->OverrideColorL(EColorControlBackground, KRgbWhite );
kindly let me know why this is happening and how to overcome this. Is it possible to Link a website on a label with click(select) facility, so that when anybody clicks on the label, it'll divert to that particular link???
Thanks,






