Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I have a QTableWidget, with 2 colums, and n row. How I can fill the cells?
I wrote this code, but didnt work.
@QTableWidgetItem *newItem = new QTableWidgetItem; newItem->setText(list[i]); ui->tableWidget->setItem(row, 0, newItem); ++row; ui->tableWidget->update();@
[SOLVED] :D
I added this line and worked. @ ui->tableWidget->insertRow(row);@
Google is my best friend :D