<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">On 06/05/2013 23:08, Martin wrote:<br>
    </div>
    <blockquote cite="mid:518829F4.5040107@mfriebe.de" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      <div class="moz-cite-prefix">Did you close the asm window before
        you tested?<br>
        <br>
        <br>
      </div>
    </blockquote>
    <br>
    Anyway. It has the right filename.<br>
    <br>
    * Please recompile the IDE with the following define  CTDEBUG<br>
    <br>
    * Please open the file   \ide\debugmanager.pas<br>
    line 1265<br>
    insert the TWO  debugln<br>
    <br>
    <br>
      if (SrcLine > 0) and (CurrentSourceUnitInfo <> nil) and<br>
         GetFullFilename(CurrentSourceUnitInfo, SrcFullName, True)<br>
      then begin<br>
    debugln('### A');<br>
        // Load the file<br>
        NewSource := CodeToolBoss.LoadFile(SrcFullName, true, false);<br>
        if NewSource = nil<br>
        then begin<br>
    debugln('### B');<br>
          if not (dlfLoadError in CurrentSourceUnitInfo.Flags) then
    begin<br>
            MessageDlg(lisDebugUnableToLoadFile,<br>
                       Format(lisDebugUnableToLoadFile2, ['"',
    SrcFullName, '"']),<br>
                       mtError,[mbCancel],0);<br>
            CurrentSourceUnitInfo.Flags := CurrentSourceUnitInfo.Flags +
    [dlfLoadError];<br>
          end;<br>
          SrcLine := -1;<br>
        end;<br>
      end<br>
      else<br>
        SrcLine := -1;<br>
    <br>
  </body>
</html>