Hello good evening ,I am making a small application that obtains IP numbers from a network and display them in a QTablewidget .The problem that I am facing is that the IP numbers are displayed in the table all at the same time and I would like them to be displayed one by one as they are obtained ,can this be achieved with a QTablewidget ?
why not use a QTableView and put the IPs in a model?
Hello good morning, thanks for the help, in the end what I did was to create a QThread and the problem was solved.