Re: QTableWidget updating columns in a single row

2013-04-26 Thread Sara Lochtie
On Wednesday, April 24, 2013 11:51:04 AM UTC-7, Vincent Vande Vyvre wrote: Thanks. I think I should be able to figure out from here. I appreciate all of the help! Le 24/04/2013 19:12, Sara Lochtie a écrit : On Tuesday, April 23, 2013 11:22:29 PM UTC-7, Sara Lochtie wrote: I have

QTableWidget updating columns in a single row

2013-04-24 Thread Sara Lochtie
I have written a GUI that gets data sent to it in real time and this data is displayed in a table. Every time data is sent in it is displayed in the table in a new row. My problem is that I would like to have the data just replace the old in the first row. The table has 6 columns (A, B, C, D,

Re: QTableWidget updating columns in a single row

2013-04-24 Thread Chris “Kwpolska” Warrick
On Wed, Apr 24, 2013 at 8:22 AM, Sara Lochtie sara.loch...@gmail.com wrote: I have written a GUI that gets data sent to it in real time and this data is displayed in a table. Every time data is sent in it is displayed in the table in a new row. My problem is that I would like to have the data

Re: QTableWidget updating columns in a single row

2013-04-24 Thread Sara Lochtie
On Tuesday, April 23, 2013 11:22:29 PM UTC-7, Sara Lochtie wrote: I have written a GUI that gets data sent to it in real time and this data is displayed in a table. Every time data is sent in it is displayed in the table in a new row. My problem is that I would like to have the data just

Re: QTableWidget updating columns in a single row

2013-04-24 Thread Chris “Kwpolska” Warrick
On Wed, Apr 24, 2013 at 7:12 PM, Sara Lochtie sara.loch...@gmail.com wrote: So that is where I am stuck. I don't how to compare them and I am trying to avoiding saving the data to a file. To a file? Just store it in a class attribute and you will be fine. You have it in self.data already.

Re: QTableWidget updating columns in a single row

2013-04-24 Thread Vincent Vande Vyvre
Le 24/04/2013 19:12, Sara Lochtie a écrit : On Tuesday, April 23, 2013 11:22:29 PM UTC-7, Sara Lochtie wrote: I have written a GUI that gets data sent to it in real time and this data is displayed in a table. Every time data is sent in it is displayed in the table in a new row. My problem is