Quote Originally Posted by rajesh View Post
the following code is working for me in Qt4. if it doesn't work in Qt3 then look for QPalette or backgroundRole in Qt3 assistant.

[html]
m_timeLabel1 = new QLineEdit;
QPalette palette;
palette.setColor(m_timeLabel1->backgroundRole(), Qt::transparent);
m_timeLabel1->setPalette(palette);
[/html]

10x alot!!