See if this will work:Qt Code:
def array_2_table(self, array, qtable): qtable.setColumnCount(10) qtable.setRowCount(600) for row in range(600): for column in range(10):To copy to clipboard, switch view to plain text mode
See if this will work:Qt Code:
def array_2_table(self, array, qtable): qtable.setColumnCount(10) qtable.setRowCount(600) for row in range(600): for column in range(10):To copy to clipboard, switch view to plain text mode
Bookmarks