<div dir="ltr"><div class="gmail_default" style="font-family:georgia,serif"><font size="2">Try qtc.Qt.Horizontal</font></div><div class="gmail_default" style="font-family:georgia,serif;font-size:large"><font size="2">Tom</font><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jun 9, 2021 at 8:47 PM Rich Shepard <<a href="mailto:rshepard@appl-ecosys.com">rshepard@appl-ecosys.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">In a module I import:<br>
from PyQt5 import QtWidgets as qtw<br>
from PyQt5 import QtGui as qtg<br>
from PyQt5 import QtCore as qtc<br>
from PyQt5 import QtSql as qts<br>
<br>
For the model I have these statements:<br>
        self.model = qts.QSqlTableModel()<br>
         self.model.setTable(table_name)<br>
         self.model.setHeaderData(1, Qt.Horizontal, 'Type')<br>
         self.model.select()<br>
<br>
When I run the application python tells me:<br>
$ python activitytypes.py <br>
[]<br>
Traceback (most recent call last):<br>
   File "activitytypes.py", line 49, in <module><br>
     window = ActTypes()<br>
   File "activitytypes.py", line 29, in __init__<br>
     self.model.setHeaderData(1, Qt.Horizontal, 'Type')<br>
NameError: name 'Qt' is not defined<br>
<br>
I haven't found where Qt.Horizontal is defined. Changing Qt to qtw, qtg,<br>
qtc, and qts all generate the same error.<br>
<br>
What am I missing?<br>
<br>
Rich<br>
<br>
<br>
</blockquote></div>