0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

「EditorLineEnds.ttr を作成できません」の対処方法

Last updated at Posted at 2018-07-12

Windows 7 (8.1でも発生する場合がある) 上で、RAD Studio/Delphi/C++Builder 2010 以前のバージョンを起動した際に発生する
「"EditorLineEnds.ttr"を作成できません。プロセスはファイルにアクセスできません。別のプロセスが使用中です。」
のエラーについての対処方法

  • 最新のバージョンを使う(この記事を書いた時点の最新バージョンは 10.2 Tokyo)
  • IDEFixPack を適用する
  • dzEditorLineEndsFix を使う
  • 以下の起動スクリプトを作成して、製品を起動する (bds.exe の箇所のパスは実際の環境に修正してください)
  del %temp%\EditorLineEnds*.ttr 
  set dt=%date%_%time:~3,2%-%time:~6,2%
  rename "%temp%\EditorLineEnds.ttr" "EditorLineEnds_%dt%.ttr"
  start "" "C:\Program Files\Borland\BDS\4.0\Bin\bds.exe"

##参考記事
http://support.embarcadero.com/article/44076
http://support.embarcadero.com/article/44023
http://support.embarcadero.com/article/44044
http://mrxray.on.coocan.jp/Delphi/Others/Windows7_Delphi7.htm#06
http://4river.a.la9.jp/gps/WinUpdate.htm

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?