1. ホーム

このアプリケーションは、ランタイムに異常な方法で終了するよう要求しました。

2022-02-17 18:59:27

I. まずcmdを試す

cd %windir%system32 command と入力し、Enterキーを押してください。このコマンドは、system32フォルダのパスを見つけるという意味です。

次に、次のように入力します。Regsvr32 Msxml3.dll と入力し、再度Enterキーを押すと、このプロセスが完了するまでにしばらくかかります。

II. 互換性

未解決の場合、互換性の問題を考慮する

デスクトップ上のプログラムのアイコンを右クリックし、プロパティを選択します。ポップアップウィンドウで、「互換性」を選択し、「互換モードでこのプログラムを実行する」をチェックし、「OK」をクリックします。

今日、アプリケーションはランタイムにいつもと違う方法で終了を要求してきました。そこで、いくつか発見したので、ご紹介します。

まず理解していただきたいのは、この文はアプリケーションが例外的に終了を要求していることを意味しているということです。

アメリカでの説明を見てみましょう。

彼の説明によると、問題はメモリに関連しているとのことで、プログラムを最適化したところ、確かに問題は解決しました。また、他の情報も調べたところ、問題は基本的にメモリへの読み書き時の問題であることがわかりました。

それから、公式の説明で、ウェブ上でたくさん出回っているものを見つけました。

Microsoft's official explanation is as follows.

Symptom
When running a custom Microsoft Visual C++ 6.0 application in Microsoft Windows XP, you may receive the following error message.
This application has requested the Runtime to terminate it in an unusual way.Please contact the application''s support team for more information.
Back to top

Cause
This problem may occur if the /GR and /MD compiler switches are used and the Msvcrt.dll file and Msvcirt.dll file are of version 7.0.x.

Note: This problem does not occur when using Msvcrt.dll file and Msvcirt.dll file from earlier than version 7.0.
Back to top

Solution
Microsoft now provides a supported patch, but it is only used to resolve the issues mentioned in this article. This patch should only be applied if the system is experiencing the specific issues described in this document. This patch may also be subject to further testing. Therefore, if this issue does not seriously affect you, we recommend that you wait for the next Windows XP Service Pack that includes this patch.

To resolve this issue immediately, please contact Microsoft Product Support Services for this patch. For a complete list of Microsoft Product Support Service phone numbers and support cost information, please visit the following Microsoft website.



http://support.microsoft.com/contactus/?ws=support




According to Microsoft's solution the problem can be solved as follows.
1, Download the earlier Msvcrt.dll file and Msvcirt.dll file.
2. Search for these two files in C:\Program Files\ or other software installation directory.
3、Download the official Microsoft patch.


 この説明は、実は何もしていないのと同じなんです。問題が解決するかどうかまだテストしていませんし、XPシステムに関して彼が返したものは、今ではほとんど適用できません。

また、この問題を抱えている人に試してもらいたい回避策も見つかりました。

解決方法

1. スタート」-「ファイル名を指定して実行」-「cmd」と入力

2, type cd %windir%system32 (Windowsインストールディレクトリのsystem32フォルダを入力)

3. Regsvr32 Msxml3.dll と入力します。