Some Windows applications fail on Hebrew-language machines with a Visual Fortran run-time error referencing DFORRT.dll and aibase.dll.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM042516
Submitted
February 18, 2009
Last Modified
June 5, 2024
Applies to
No Product Found
Version found
10.0
Status
Will Not Be Addressed
The development team has considered the issue or request and concluded it will not be addressed. The issue's Additional Information section may contain further explanation.
Additional Information
No Public Explanation
Workaround
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();