Debugger Exception Notification问题?? ?? Delphi / Windows SDK/API
http://www.delphi2007.net/DelphiBase/html/delphi_20061204190804295.html
program   Project2;  
   
  {$APPTYPE   CONSOLE}  
   
  uses  
      SysUtils;  
      const  
      filename1='c:\11.txt';  
      filename2='c:\22.txt';  
      var  
      f1,f2:textfile;  
      s:string;  
   
  begin  
  assignfile(f1,filename1);  
  assignfile(f2,filename2);  
  rewrite(f2);  
  writeln(f2,'hello');        
  while   not   Eof(f1)   do  
  begin  
  readln(f1,s);  
  writeln(f2,s);  
  end;  
  closefile(f1);  
  closefile(f2);  
  end.  
   
  调试的时候,老报标题的错误  
  我的qq是44665376  
  哪位高手,能告诉我原因

AssignFile(f1,filename1);  
      FileMode   :=   0;     {Set   file   access   to   read   only   }  
      Reset(f1);  
      ...  
      CloseFile(f1);  
 

相关文章:

  • 2022-12-23
  • 2021-08-02
  • 2022-12-23
  • 2022-03-03
  • 2022-03-05
  • 2022-12-23
  • 2021-08-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-01
  • 2021-05-17
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
相关资源
相似解决方案