Hi
How to display the QStringList data on a QWidget.
I have follwing data in my QStringList object.
Birthday
Marriage
Personal
I want to display this data on the widget.
Code Snippet for the same is below:
The following code gets the folder list under c:\\Data\\Images\\Pictures.I want to display this list on a widget.
QDir dir("c:\\Data\\Images\\Pictures");//
dir.setFilter(QDir::AllDirs);
QStringList list = dir.entryList();
QStringList::Iterator it1 = list.begin();
QMessageBox::information(NULL, "",*it1);
while( it1 != list.end())
{
QMessageBox::information(NULL, "", *it1);
++it1;
}




