Some Windows applications fail on Hebrew-language machines with a Visual Fortran run-time error referencing DFORRT.dll and aibase.dll.
上次发布: August 25, 2014No Product Found
漏洞 ID 编号
NIM042516
已提交
February 18, 2009
上次修改时间
June 5, 2024
适用范围
No Product Found
找到的版本
10.0
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
No Public Explanation
解决办法
One workaround for this issue is to build the executable as a console application but have it create Windows forms as usual. If displaying an empty console window isn’t ideal, a shim can be created that starts the process and hides the console window. Here’s an example in C#:// Create the process info object.ProcessStartInfo processStartInfo = new ProcessStartInfo();processStartInfo.FileName = "MyGuiApp.exe";processStartInfo.CreateNoWindow = true;// Start the process.Process process = Process.Start(processStartInfo);process.WaitForExit();