<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Detlev,<br>
<br>
thanks very much for the reply but unfortunately it does not fix the
problem. Doing a few more tests I found out:<br>
1) Open files works doing drag and drop.<br>
2) When the previously described error message is displayed it seems
that file path is composed in the wrong way:<br>
<br>
&nbsp;&nbsp;&nbsp; "The file G:\DIR1\DIR2\filename.py\filename.py could not be opened"<br>
<br>
&nbsp;&nbsp;&nbsp; It looks like the actual filename is also taken as a directory name
and then file name is appended another time.<br>
&nbsp;&nbsp;&nbsp; This is obviously a clear reason.<br>
<br>
Do you have suggestion how to solve that ?<br>
<br>
Thanks very much,<br>
<br>
Lars<br>
<br>
Detlev Offenbach wrote:
<blockquote cite="mid200607031832.20503.detlev@die-offenbachs.de"
 type="cite">
  <pre wrap="">On Friday 30 June 2006 16:21, Lars Fabig wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hi all,

I'm new to Eric3 and set up the required software packages to make it
running. My configuration is:

- Windows XP
- Qt 3.3.3
- Python 2.4.2
- PyQtGPL10.exe (<a class="moz-txt-link-freetext" href="http://www.quadgames.com/download/pythonqt/">http://www.quadgames.com/download/pythonqt/</a>)
- Eric3snapshot2005-04-10.exe (<a class="moz-txt-link-freetext" href="http://www.quadgames.com/download/pythonqt/">http://www.quadgames.com/download/pythonqt/</a>)

With this quite old Eric snapshot it works.

Trying the latest version (3.9.1) I could install Eric, but I had to
execute it from command line.
The IDE starts up. Trying to open whatever python script file the editor
gives an error message:
"The file xyz could not be opened"

The stderr indicates the following message:
Traceback (most recent call last):
  File "C:\Program
Files\Python24\Lib\site-packages\eric3\QScintilla\Editor.py", line 3363,
in focusInEvent
    self.setCaretWidth(self.caretWidth)
Atrribute Error:caretWidth

Does there exist a bug fix for that or does anybody know how to fix ?
Also work arounds are welcome !
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Try to change this line to

        try:
            self.setCaretWidth(self.caretWidth)
        except AttributeError:
            pass

There seems to be a timing issue that sometimes causes this to happen.
  </pre>
  <blockquote type="cite">
    <pre wrap="">Best,

Lars


_______________________________________________
PyKDE mailing list    <a class="moz-txt-link-abbreviated" href="mailto:PyKDE@mats.imk.fraunhofer.de">PyKDE@mats.imk.fraunhofer.de</a>
<a class="moz-txt-link-freetext" href="http://mats.imk.fraunhofer.de/mailman/listinfo/pykde">http://mats.imk.fraunhofer.de/mailman/listinfo/pykde</a>
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Detlev
  </pre>
</blockquote>
<br>
</body>
</html>