Hi all,<br>
<br>
&nbsp;I'm trying to read in files in my PyQt app, so naturally I'm using QFileDialog. The way I read<br>
the Qt docs, you can use multiple file type filters in the dialog by using ;; as a separator between<br>
the type lists in the filter string. Like this:<br>
<br>
&nbsp;&nbsp;&nbsp; def fileOpen(self):<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filename =
QFileDialog.getOpenFileNames(&quot;&quot;, &quot;JPG (*.jpg);;PGM (*.pgm)&quot;), self,
&quot;Read file&quot;, &quot;Read file&quot;)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...<br>
<br>
&nbsp;I've found several examples on the net (C++ though, not Python) which do this, so I figured it should work,<br>
but what I got instead of three filters: &quot;JPG (*.jpg)&quot;, &quot;PGM (*.pgm)&quot;, and the default &quot;All Files (*)&quot;, were three filters<br>
of which two were identical instances &quot;JPG (*.jpg);;PGM (*.pgm)&quot;, and the third the default one.&nbsp; Any idea what<br>
the problem is here? I'm using&nbsp; Qt 3.3.3 and&nbsp; PyQt&nbsp; 3.13. <br clear="all"><br>-- <br>Alex Borghgraef