hi all;
how can i store d listbox items in an array...is there any indexing of items in list box...??
i m using Qt 3 on linux...
thanks...
hi all;
how can i store d listbox items in an array...is there any indexing of items in list box...??
i m using Qt 3 on linux...
thanks...
Qt Code:
QStringList itemList; for(int i = 0; i < listBox.count(); i++) { itemList<<listBox.text(i); }To copy to clipboard, switch view to plain text mode
Index starts from 0.
Mithin
www.mithin.in
awanish_jmi (25th July 2008)
Bookmarks