Invalid Windows version when using Inno Setup - inno-setup

A user is having problems installing my software. This is his OS:
This is his system:
He gets this error when installing:
In my [Code] section I have the following:
function MakeVersion(Major, Minor, Build: Cardinal): Cardinal;
begin
Result := (Major shl 24) + (Minor shl 16) + Build;
end;
{ Called just before setup is about to start }
function InitializeSetup(): Boolean;
var
WindowsVersion: Cardinal;
begin
Result := True;
{ Check Windows Version }
WindowsVersion := GetWindowsVersion;
Log(Format('Windows Version: %x', [WindowsVersion]));
(* Windows must be Win 7 SP1 (6.1.7601), Win 8.1 (6.3.9200) or higher, eg: Win 10 (10.0.10240)
See: http://www.jrsoftware.org/ishelp/index.php?topic=winvernotes
Microsoft .Net Framework 4.6.2 will only work with these operating systems. *)
if (WindowsVersion < MakeVersion(6, 1, 7601)) or
((WindowsVersion >= MakeVersion(6, 2, 0)) and (WindowsVersion < MakeVersion(6, 3, 0))) then
begin
MsgBox(SetupMessage(msgWindowsVersionNotSupported), mbError, MB_OK);
Result := False;
end;
end;
I think I am going to have to ask him again because in the log this is what it says:
2020-06-21 15:07:18.055 Windows version: 6.2.9200 (NT platform: Yes)
According to here it says:
Windows 8 6.2.9200
I will re-confirm with him.
Here is the log:
2020-06-21 15:07:18.055 Log opened. (Time zone: UTC-05:00)
2020-06-21 15:07:18.055 Setup version: Inno Setup version 6.0.5 (u)
2020-06-21 15:07:18.055 Original Setup EXE: C:\Users\pltrc\AppData\Roaming\Meeting Schedule Assistant\AutoUpdate\MeetSchedAssistSetup.exe
2020-06-21 15:07:18.055 Setup command line: /SL5="$D0CE8,11801715,780800,C:\Users\pltrc\AppData\Roaming\Meeting Schedule Assistant\AutoUpdate\MeetSchedAssistSetup.exe" /SPAWNWND=$C0CB6 /NOTIFYWND=$240D86
2020-06-21 15:07:18.055 Compatibility mode: Yes (Win8RTM Installer)
2020-06-21 15:07:18.055 Windows version: 6.2.9200 (NT platform: Yes)
2020-06-21 15:07:18.055 64-bit Windows: Yes
2020-06-21 15:07:18.055 Processor architecture: x64
2020-06-21 15:07:18.055 User privileges: Administrative
2020-06-21 15:07:18.110 Administrative install mode: Yes
2020-06-21 15:07:18.110 Install mode root key: HKEY_LOCAL_MACHINE
2020-06-21 15:07:18.110 64-bit install mode: No
2020-06-21 15:07:20.131 Created temporary directory: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp
2020-06-21 15:07:20.140 -- DLL function import --
2020-06-21 15:07:20.140 Function name: idpAddFile
2020-06-21 15:07:20.140 DLL name: files:idp.dll
2020-06-21 15:07:20.140 Extracting temporary file: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.148 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.148 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpAddFileComp
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpAddMirror
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpAddFtpDir
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpAddFtpDirComp
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpClearFiles
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpFilesCount
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpFtpDirsCount
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpFileDownloaded
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpFilesDownloaded
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpDownloadFile
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.181 -- DLL function import --
2020-06-21 15:07:20.181 Function name: idpDownloadFiles
2020-06-21 15:07:20.181 DLL name: files:idp.dll
2020-06-21 15:07:20.181 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.181 Importing the DLL function.
2020-06-21 15:07:20.181 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpDownloadFilesComp
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpDownloadFilesCompUi
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpStartDownload
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpStopDownload
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetLogin
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetProxyMode
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetProxyName
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetProxyLogin
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpConnectControl
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpAddMessage
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetInternalOption
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetDetailedMode
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpSetComponents
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpReportError
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpTrace
2020-06-21 15:07:20.182 DLL name: files:idp.dll
2020-06-21 15:07:20.182 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.182 Importing the DLL function.
2020-06-21 15:07:20.182 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.182 -- DLL function import --
2020-06-21 15:07:20.182 Function name: idpAddFileSize
2020-06-21 15:07:20.183 DLL name: files:idp.dll
2020-06-21 15:07:20.183 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.183 Importing the DLL function.
2020-06-21 15:07:20.183 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.183 -- DLL function import --
2020-06-21 15:07:20.183 Function name: idpAddFileSize
2020-06-21 15:07:20.183 DLL name: files:idp.dll
2020-06-21 15:07:20.183 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.183 Importing the DLL function.
2020-06-21 15:07:20.183 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.183 -- DLL function import --
2020-06-21 15:07:20.183 Function name: idpGetFileSize
2020-06-21 15:07:20.183 DLL name: files:idp.dll
2020-06-21 15:07:20.183 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.183 Importing the DLL function.
2020-06-21 15:07:20.183 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.183 -- DLL function import --
2020-06-21 15:07:20.183 Function name: idpGetFilesSize
2020-06-21 15:07:20.183 DLL name: files:idp.dll
2020-06-21 15:07:20.183 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\idp.dll
2020-06-21 15:07:20.183 Importing the DLL function.
2020-06-21 15:07:20.183 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.183 -- DLL function import --
2020-06-21 15:07:20.183 Function name: LoadVCLStyleW
2020-06-21 15:07:20.183 DLL name: setup:files:VclStylesInno.dll
2020-06-21 15:07:20.183 Extracting temporary file: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\VclStylesInno.dll
2020-06-21 15:07:20.248 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\VclStylesInno.dll
2020-06-21 15:07:20.248 Importing the DLL function.
2020-06-21 15:07:20.626 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.626 -- DLL function import --
2020-06-21 15:07:20.626 Function name: LoadVCLStyleW
2020-06-21 15:07:20.626 DLL name: uninstall:{%TEMP}\VclStylesInno.dll
2020-06-21 15:07:20.626 Skipping.
2020-06-21 15:07:20.626 -- DLL function import --
2020-06-21 15:07:20.626 Function name: UnLoadVCLStyles
2020-06-21 15:07:20.626 DLL name: setup:files:VclStylesInno.dll
2020-06-21 15:07:20.627 Dest DLL name: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\VclStylesInno.dll
2020-06-21 15:07:20.627 Importing the DLL function.
2020-06-21 15:07:20.627 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.627 -- DLL function import --
2020-06-21 15:07:20.627 Function name: UnLoadVCLStyles
2020-06-21 15:07:20.627 DLL name: uninstall:{%TEMP}\VclStylesInno.dll
2020-06-21 15:07:20.627 Skipping.
2020-06-21 15:07:20.627 -- DLL function import --
2020-06-21 15:07:20.627 Function name: ShowWindow
2020-06-21 15:07:20.627 DLL name: user32.dll
2020-06-21 15:07:20.627 Dest DLL name: user32.dll
2020-06-21 15:07:20.627 Importing the DLL function.
2020-06-21 15:07:20.627 Successfully imported the DLL function. Delay loaded? No
2020-06-21 15:07:20.627 Extracting temporary file: C:\Users\pltrc\AppData\Local\Temp\is-MEE3F.tmp\Amakrits.vsf
2020-06-21 15:07:20.949 Windows Version: 60223F0
2020-06-21 15:07:20.949 Message box (OK):
This program does not support the version of Windows your computer is running.
2020-06-21 15:07:25.760 User chose OK.
2020-06-21 15:07:25.760 InitializeSetup returned False; aborting.
2020-06-21 15:07:25.760 Got EAbort exception.
2020-06-21 15:07:25.760 Deinitializing Setup.
2020-06-21 15:07:25.911 Log closed.

Your user seems to be running the installer in Windows 8 compatibility mode:
Compatibility mode: Yes (Win8RTM Installer)

Can you run any official Inno Setup example on that target system and get log from it?
So far there were no issues in Inno Setup Windows detection algorithm so we need to find out where is a catch.

Related

PyInstaller: .exe runs, throws an exception trying to dynamically load a module

I've written a Python program using phonenumbers. On my Windows system with Python 3.6.4 installed, it works as intended, but I'd like to redistribute it as a standalone Windows executable, so I've run PyInstaller on it to get a Windows executable.
However, I'm hitting two barriers: first, I'm a rank beginner with Python, and the details of the Python environment are still a slog for me.
Second, the .EXE program throws an exception trying to dynamically load a module (country data to parse a number, FWIW), and I haven't managed to figure out how to incorporate dynamically loaded modules into a standalone executable. (The failure was in a "try" clause, so it took me a while to locate it.) My own system has all the memory I'd need to pre-load all the needed dynamically loaded modules up front, so I'd prefer to do things that way.
Solutions, suggestions, hints, thoughts? A fully-worked example somewhere? Perhaps I'm failing to understand an answer already in the forum, but that would be because I'm a beginner, so I'd appreciate some clarity.
____
Thanks for your notes. To answer #adnan-y and #apogalacticon: I've made a simple test case. Here are the program source, output from running the script, the pyinstaller run on the program (with no prior build directories or files), its warning file, the result of running the executable, and the location of the file that the Python script correctly loads and correctly uses on the sample input.
The source program Parse-failure.py
import phonenumbers
Number = "+17034820623"
print("The unprocessed number is <%s>" % (Number))
Parsed_Number = phonenumbers.parse(Number)
print("The parsed number is <%s>" % (Parsed_Number))
Output from running Parse-failure.py
$ Parse-failure.py
The unprocessed number is <+17034820623>
The parsed number is <Country Code: 1 National Number: 7034820623>
Pyinstaller run
$ PyInstaller --onefile Parse-failure.py
94 INFO: PyInstaller: 3.4.dev0
94 INFO: Python: 3.6.4
94 INFO: Platform: Windows-7-6.1.7601-SP1
95 INFO: wrote N:\PPR\Parse-failure.spec
96 INFO: UPX is not available.
97 INFO: Extending PYTHONPATH with paths
['f:\\Dems\\PhoneCheck', 'f:\\Dems\\PhoneCheck']
98 INFO: checking Analysis
98 INFO: Building Analysis because out00-Analysis.toc is non existent
98 INFO: Initializing module dependency graph...
99 INFO: Initializing module graph hooks...
101 INFO: Analyzing base_library.zip ...
5155 INFO: running Analysis out00-Analysis.toc
5157 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable
required by d:\python36\python.exe
6356 INFO: Caching module hooks...
6363 INFO: Analyzing N:\PPR\Parse-failure.py
6738 INFO: Loading module hooks...
6739 INFO: Loading module hook "hook-encodings.py"...
6843 INFO: Loading module hook "hook-pydoc.py"...
6845 INFO: Loading module hook "hook-xml.py"...
7238 INFO: Looking for ctypes DLLs
7238 INFO: Analyzing run-time hooks ...
7247 INFO: Looking for dynamic libraries
7372 INFO: Looking for eggs
7372 INFO: Using Python library d:\python36\python36.dll
7372 INFO: Found binding redirects:
[]
7375 INFO: Warnings written to N:\PPR\build\Parse-failure\warnParse-failure.txt
7461 INFO: Graph cross-reference written to N:\PPR\build\Parse-failure\xref-Parse-failure.html
7471 INFO: checking PYZ
7471 INFO: Building PYZ because out00-PYZ.toc is non existent
7471 INFO: Building PYZ (ZlibArchive) N:\PPR\build\Parse-failure\out00-PYZ.pyz
8292 INFO: Building PYZ (ZlibArchive) N:\PPR\build\Parse-failure\out00-PYZ.pyz completed successfully.
8302 INFO: checking PKG
8302 INFO: Building PKG because out00-PKG.toc is non existent
8302 INFO: Building PKG (CArchive) out00-PKG.pkg
10218 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
10222 INFO: Bootloader d:\python36\lib\site-packages\PyInstaller\bootloader\Windows-64bit\run.exe
10222 INFO: checking EXE
10222 INFO: Building EXE because out00-EXE.toc is non existent
10222 INFO: Building EXE from out00-EXE.toc
10222 INFO: Appending archive to EXE N:\PPR\dist\Parse-failure.exe
10228 INFO: Building EXE from out00-EXE.toc completed successfully.
Warnings file build\PCS\warnParse-failure.txt
missing module named resource - imported by posix, n:\PPR\Parse-failure.py
missing module named posix - imported by os, n:\PPR\Parse-failure.py
missing module named _posixsubprocess - imported by subprocess, n:\PPR\Parse-failure.py
missing module named org - imported by pickle, n:\PPR\Parse-failure.py
missing module named readline - imported by cmd, code, pdb, n:\PPR\Parse-failure.py
excluded module named _frozen_importlib - imported by importlib, importlib.abc, n:\PPR\Parse-failure.py
missing module named _frozen_importlib_external - imported by importlib._bootstrap, importlib, importlib.abc, n:\PPR\Parse-failure.py
missing module named _winreg - imported by platform, n:\PPR\Parse-failure.py
missing module named _scproxy - imported by urllib.request
missing module named java - imported by platform, n:\PPR\Parse-failure.py
missing module named 'java.lang' - imported by platform, n:\PPR\Parse-failure.py, xml.sax._exceptions
missing module named vms_lib - imported by platform, n:\PPR\Parse-failure.py
missing module named termios - imported by tty, n:\PPR\Parse-failure.py, getpass
missing module named grp - imported by shutil, tarfile, n:\PPR\Parse-failure.py
missing module named pwd - imported by posixpath, shutil, tarfile, http.server, webbrowser, n:\PPR\Parse-failure.py, netrc, getpass
missing module named _dummy_threading - imported by dummy_threading, n:\PPR\Parse-failure.py
missing module named 'org.python' - imported by copy, n:\PPR\Parse-failure.py, xml.sax
Run the executable
$ dist\Parse-failure.exe
[1364] Failed to execute script Parse-failure
The unprocessed number is <+17034820623>
Traceback (most recent call last):
File "Parse-failure.py", line 7, in <module>
Parsed_Number = phonenumbers.parse(Number)
File "site-packages\phonenumbers\phonenumberutil.py", line 2835, in parse
File "site-packages\phonenumbers\phonemetadata.py", line 294, in metadata_for_region_or_calling_code
File "site-packages\phonenumbers\phonemetadata.py", line 267, in metadata_for_region
File "site-packages\phonenumbers\data\__init__.py", line 23, in _load_region
ModuleNotFoundError: No module named 'phonenumbers.data.region_US'
The location of ...region_US
D:\Python36\Lib\site-packages\phonenumbers\data\region_US.py

DeleteAfterInstall flag not deleting files once installation is complete

I've got some additional files to install some runtime engines that are required for my application (Access database engine and Crystal Reports runtimes).
I'm setting them to use the deleteafterinstall flag, so once they've been installed and the application install is complete, it should delete the files, however, I've tested it on my work PC and my personal laptop and despite the application and runtimes being installed without any issues, the runtimes installers aren't being deleted.
[Files]
Source: "\\my_Directory\AccessDatabaseEngine.exe"; DestDir: "{app}"; AfterInstall: RunAccessInstaller; Flags: deleteafterinstall;
[Code]
procedure RunAccessInstaller;
var
ResultCode: Integer;
begin
if not Exec(ExpandConstant('{app}\AccessDatabaseEngine.exe'), '', '', SW_SHOWNORMAL,
ewWaitUntilTerminated, ResultCode)
then
MsgBox('Microsoft Office Engine installer failed to run!' + #13#10 +
SysErrorMessage(ResultCode), mbError, MB_OK);
end;
After removing AfterInstall: RunAccessInstaller along with the RunAccessInstaller procedure itself, this still doesn't delete the file.
The script now appears as below, so it seems as though the deleteafterinstall flag isn't working.
[Files]
Source: "\\server\common\David\Iconysis Agent Installer Files\AccessDatabaseEngine.exe"; _
DestDir: "{app}"; Flags: deleteafterinstall;
The full log file when running a fresh install onto my Desktop (installation run without installing AccessDatabaseEngine.exe)
2018-02-13 14:46:30.236 Log opened. (Time zone: UTC+00:00)
2018-02-13 14:46:30.236 Setup version: Inno Setup version 5.5.9 (a)
2018-02-13 14:46:30.236 Original Setup EXE: \server\common\David\IAInstaller\IAInstaller.exe
2018-02-13 14:46:30.237 Setup command line: /SL5="$1B0596,77447651,97792,\server\common\David\IAInstaller\IAInstaller.exe" /SPAWNWND=$2F0524 /NOTIFYWND=$D0576
2018-02-13 14:46:30.237 Windows version: 10.0.15063 (NT platform: Yes)
2018-02-13 14:46:30.237 64-bit Windows: Yes
2018-02-13 14:46:30.237 Processor architecture: x64
2018-02-13 14:46:30.237 User privileges: Administrative
2018-02-13 14:46:30.246 64-bit install mode: No
2018-02-13 14:46:30.249 Created temporary directory: C:\Users\admin\AppData\Local\Temp\is-A1880.tmp
2018-02-13 14:46:53.285 Starting the installation process.
2018-02-13 14:46:53.287 Creating directory: C:\Users\admin\Desktop\Iconysis Agent
2018-02-13 14:46:53.288 Directory for uninstall files: C:\Users\admin\Desktop\Iconysis Agent\Uninstaller
2018-02-13 14:46:53.288 Creating directory: C:\Users\admin\Desktop\Iconysis Agent\Uninstaller
2018-02-13 14:46:53.288 Creating new uninstall log: C:\Users\admin\Desktop\Iconysis Agent\Uninstaller\unins000.dat
2018-02-13 14:46:53.290 -- File entry --
2018-02-13 14:46:53.290 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Uninstaller\unins000.exe
2018-02-13 14:46:53.291 Time stamp of our file: 2018-02-13 14:46:30.175
2018-02-13 14:46:53.291 Installing the file.
2018-02-13 14:46:53.294 Uninstaller requires administrator: Yes
2018-02-13 14:46:53.295 Successfully installed the file.
2018-02-13 14:46:53.296 -- File entry --
2018-02-13 14:46:53.296 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent.exe
2018-02-13 14:46:53.296 Time stamp of our file: 2018-02-09 16:11:34.000
2018-02-13 14:46:53.296 Installing the file.
2018-02-13 14:46:53.369 Successfully installed the file.
2018-02-13 14:46:53.369 -- File entry --
2018-02-13 14:46:53.369 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\AccessDatabaseEngine.exe
2018-02-13 14:46:53.369 Time stamp of our file: 2017-05-18 09:37:06.000
2018-02-13 14:46:53.370 Installing the file.
2018-02-13 14:46:55.579 Successfully installed the file.
2018-02-13 14:46:55.579 -- File entry --
2018-02-13 14:46:55.580 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\CRRuntime_12_2_mlb.msi
2018-02-13 14:46:55.580 Time stamp of our file: 2017-09-15 14:57:46.000
2018-02-13 14:46:55.580 Installing the file.
2018-02-13 14:46:59.603 Successfully installed the file.
2018-02-13 14:46:59.604 -- File entry --
2018-02-13 14:46:59.604 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Iconysis Agent.pdb
2018-02-13 14:46:59.604 Time stamp of our file: 2017-09-06 11:22:30.000
2018-02-13 14:46:59.604 Installing the file.
2018-02-13 14:46:59.604 Creating directory: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent
2018-02-13 14:46:59.649 Successfully installed the file.
2018-02-13 14:46:59.649 -- File entry --
2018-02-13 14:46:59.649 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\ImportExportGuide.txt
2018-02-13 14:46:59.650 Time stamp of our file: 2017-03-03 13:37:50.000
2018-02-13 14:46:59.650 Installing the file.
2018-02-13 14:46:59.651 Successfully installed the file.
2018-02-13 14:46:59.651 -- File entry --
2018-02-13 14:46:59.652 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Infragistics.Shared.v5.1.dll
2018-02-13 14:46:59.652 Time stamp of our file: 2005-02-14 16:19:44.000
2018-02-13 14:46:59.652 Installing the file.
2018-02-13 14:46:59.662 Successfully installed the file.
2018-02-13 14:46:59.662 -- File entry --
2018-02-13 14:46:59.663 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Infragistics.Win.UltraWinGrid.v5.1.dll
2018-02-13 14:46:59.663 Time stamp of our file: 2005-02-15 12:13:28.000
2018-02-13 14:46:59.663 Installing the file.
2018-02-13 14:46:59.717 Successfully installed the file.
2018-02-13 14:46:59.717 -- File entry --
2018-02-13 14:46:59.718 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Infragistics.Win.v5.1.dll
2018-02-13 14:46:59.718 Time stamp of our file: 2005-02-14 16:21:46.000
2018-02-13 14:46:59.718 Installing the file.
2018-02-13 14:46:59.782 Successfully installed the file.
2018-02-13 14:46:59.783 -- File entry --
2018-02-13 14:46:59.783 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\README.txt
2018-02-13 14:46:59.783 Time stamp of our file: 2018-02-05 15:04:58.000
2018-02-13 14:46:59.783 Installing the file.
2018-02-13 14:46:59.785 Successfully installed the file.
2018-02-13 14:46:59.785 -- File entry --
2018-02-13 14:46:59.785 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Databases\comm_db-TEST.mdb
2018-02-13 14:46:59.785 Time stamp of our file: 2018-02-01 11:30:30.000
2018-02-13 14:46:59.785 Installing the file.
2018-02-13 14:46:59.785 Creating directory: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Databases
2018-02-13 14:47:00.028 Successfully installed the file.
2018-02-13 14:47:00.029 -- File entry --
2018-02-13 14:47:00.029 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Databases\comm_db.mdb
2018-02-13 14:47:00.029 Time stamp of our file: 2018-02-01 11:30:14.000
2018-02-13 14:47:00.029 Installing the file.
2018-02-13 14:47:00.270 Successfully installed the file.
2018-02-13 14:47:00.271 -- File entry --
2018-02-13 14:47:00.271 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACC.rpt
2018-02-13 14:47:00.271 Time stamp of our file: 2017-09-22 16:31:58.000
2018-02-13 14:47:00.271 Installing the file.
2018-02-13 14:47:00.271 Creating directory: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports
2018-02-13 14:47:00.276 Successfully installed the file.
2018-02-13 14:47:00.277 -- File entry --
2018-02-13 14:47:00.277 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACCAT.rpt
2018-02-13 14:47:00.277 Time stamp of our file: 2017-09-21 13:20:00.000
2018-02-13 14:47:00.277 Installing the file.
2018-02-13 14:47:00.282 Successfully installed the file.
2018-02-13 14:47:00.282 -- File entry --
2018-02-13 14:47:00.283 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACPC.rpt
2018-02-13 14:47:00.283 Time stamp of our file: 2017-09-21 13:20:00.000
2018-02-13 14:47:00.283 Installing the file.
2018-02-13 14:47:00.287 Successfully installed the file.
2018-02-13 14:47:00.288 -- File entry --
2018-02-13 14:47:00.288 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACPPC.rpt
2018-02-13 14:47:00.288 Time stamp of our file: 2017-09-22 16:32:16.000
2018-02-13 14:47:00.288 Installing the file.
2018-02-13 14:47:00.293 Successfully installed the file.
2018-02-13 14:47:00.293 -- File entry --
2018-02-13 14:47:00.293 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACT.rpt
2018-02-13 14:47:00.293 Time stamp of our file: 2017-09-22 16:31:40.000
2018-02-13 14:47:00.293 Installing the file.
2018-02-13 14:47:00.297 Successfully installed the file.
2018-02-13 14:47:00.297 -- File entry --
2018-02-13 14:47:00.298 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BIACTOT.rpt
2018-02-13 14:47:00.298 Time stamp of our file: 2017-09-22 16:31:06.000
2018-02-13 14:47:00.298 Installing the file.
2018-02-13 14:47:00.302 Successfully installed the file.
2018-02-13 14:47:00.302 -- File entry --
2018-02-13 14:47:00.302 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BICES.rpt
2018-02-13 14:47:00.303 Time stamp of our file: 2017-03-13 12:45:22.000
2018-02-13 14:47:00.303 Installing the file.
2018-02-13 14:47:00.307 Successfully installed the file.
2018-02-13 14:47:00.307 -- File entry --
2018-02-13 14:47:00.308 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\BICF.rpt
2018-02-13 14:47:00.308 Time stamp of our file: 2017-09-22 09:58:00.000
2018-02-13 14:47:00.308 Installing the file.
2018-02-13 14:47:00.312 Successfully installed the file.
2018-02-13 14:47:00.312 -- File entry --
2018-02-13 14:47:00.312 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CancelledNote.rpt
2018-02-13 14:47:00.313 Time stamp of our file: 2017-07-26 13:41:46.000
2018-02-13 14:47:00.313 Installing the file.
2018-02-13 14:47:00.319 Successfully installed the file.
2018-02-13 14:47:00.320 -- File entry --
2018-02-13 14:47:00.320 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRDC.rpt
2018-02-13 14:47:00.320 Time stamp of our file: 2017-03-01 10:17:30.000
2018-02-13 14:47:00.320 Installing the file.
2018-02-13 14:47:00.326 Successfully installed the file.
2018-02-13 14:47:00.326 -- File entry --
2018-02-13 14:47:00.326 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRDU.rpt
2018-02-13 14:47:00.326 Time stamp of our file: 2017-09-22 16:29:20.000
2018-02-13 14:47:00.326 Installing the file.
2018-02-13 14:47:00.330 Successfully installed the file.
2018-02-13 14:47:00.331 -- File entry --
2018-02-13 14:47:00.331 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRID.rpt
2018-02-13 14:47:00.331 Time stamp of our file: 2018-01-26 14:04:00.000
2018-02-13 14:47:00.331 Installing the file.
2018-02-13 14:47:00.357 Successfully installed the file.
2018-02-13 14:47:00.357 -- File entry --
2018-02-13 14:47:00.358 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRISD.rpt
2018-02-13 14:47:00.358 Time stamp of our file: 2017-06-09 11:01:32.000
2018-02-13 14:47:00.358 Installing the file.
2018-02-13 14:47:00.362 Successfully installed the file.
2018-02-13 14:47:00.362 -- File entry --
2018-02-13 14:47:00.362 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRISF.rpt
2018-02-13 14:47:00.363 Time stamp of our file: 2018-01-26 14:04:00.000
2018-02-13 14:47:00.363 Installing the file.
2018-02-13 14:47:00.377 Successfully installed the file.
2018-02-13 14:47:00.377 -- File entry --
2018-02-13 14:47:00.377 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\CRVAT.rpt
2018-02-13 14:47:00.378 Time stamp of our file: 2017-06-09 11:02:48.000
2018-02-13 14:47:00.378 Installing the file.
2018-02-13 14:47:00.381 Successfully installed the file.
2018-02-13 14:47:00.381 -- File entry --
2018-02-13 14:47:00.382 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\customerInfoReport.rpt
2018-02-13 14:47:00.382 Time stamp of our file: 2017-07-18 16:16:00.000
2018-02-13 14:47:00.382 Installing the file.
2018-02-13 14:47:00.386 Successfully installed the file.
2018-02-13 14:47:00.386 -- File entry --
2018-02-13 14:47:00.387 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\DaysModificationsCondensed.rpt
2018-02-13 14:47:00.387 Time stamp of our file: 2017-07-17 09:47:00.000
2018-02-13 14:47:00.387 Installing the file.
2018-02-13 14:47:00.390 Successfully installed the file.
2018-02-13 14:47:00.390 -- File entry --
2018-02-13 14:47:00.391 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\DaysModificationsLines.rpt
2018-02-13 14:47:00.391 Time stamp of our file: 2017-08-01 10:45:10.000
2018-02-13 14:47:00.391 Installing the file.
2018-02-13 14:47:00.395 Successfully installed the file.
2018-02-13 14:47:00.395 -- File entry --
2018-02-13 14:47:00.395 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\MJGCustConf.rpt
2018-02-13 14:47:00.395 Time stamp of our file: 2017-03-01 11:04:42.000
2018-02-13 14:47:00.395 Installing the file.
2018-02-13 14:47:00.399 Successfully installed the file.
2018-02-13 14:47:00.400 -- File entry --
2018-02-13 14:47:00.400 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\MJGOrderCancelledNotification.rpt
2018-02-13 14:47:00.400 Time stamp of our file: 2017-03-01 11:06:38.000
2018-02-13 14:47:00.400 Installing the file.
2018-02-13 14:47:00.404 Successfully installed the file.
2018-02-13 14:47:00.404 -- File entry --
2018-02-13 14:47:00.404 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\MJGOrderCancelledOneAddress.rpt
2018-02-13 14:47:00.405 Time stamp of our file: 2017-03-01 11:06:58.000
2018-02-13 14:47:00.405 Installing the file.
2018-02-13 14:47:00.408 Successfully installed the file.
2018-02-13 14:47:00.408 -- File entry --
2018-02-13 14:47:00.409 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\MJGRevisedNoteCust.rpt
2018-02-13 14:47:00.409 Time stamp of our file: 2017-03-01 11:07:30.000
2018-02-13 14:47:00.409 Installing the file.
2018-02-13 14:47:00.412 Successfully installed the file.
2018-02-13 14:47:00.412 -- File entry --
2018-02-13 14:47:00.540 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\Iconysis Agent\Reports\VVQROP.rpt
2018-02-13 14:47:00.540 Time stamp of our file: 2017-09-21 13:19:00.000
2018-02-13 14:47:00.540 Installing the file.
2018-02-13 14:47:00.543 Successfully installed the file.
2018-02-13 14:47:00.544 -- File entry --
2018-02-13 14:47:00.544 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\AccessDatabaseEngine.exe
2018-02-13 14:47:00.544 Time stamp of our file: 2017-05-18 09:37:06.000
2018-02-13 14:47:00.544 Dest file exists.
2018-02-13 14:47:00.544 Time stamp of existing file: 2017-05-18 09:37:06.000
2018-02-13 14:47:00.544 Version of our file: 12.0.4518.1014
2018-02-13 14:47:00.637 Version of existing file: 12.0.4518.1014
2018-02-13 14:47:00.637 Same version. Skipping.
2018-02-13 14:47:00.637 -- Icon entry --
2018-02-13 14:47:00.638 Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Iconysis Agent.lnk
2018-02-13 14:47:00.638 Creating the icon.
2018-02-13 14:47:00.648 Successfully created the icon.
2018-02-13 14:47:00.698 Installation process succeeded.
2018-02-13 14:47:00.702 Need to restart Windows? No
There are two references to AccessDatabaseEngine.exe in the log file.
2018-02-13 14:46:53.369 -- File entry --
2018-02-13 14:46:53.369 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\AccessDatabaseEngine.exe
2018-02-13 14:46:53.369 Time stamp of our file: 2017-05-18 09:37:06.000
2018-02-13 14:46:53.370 Installing the file.
2018-02-13 14:46:55.579 Successfully installed the file.
2018-02-13 14:47:00.544 -- File entry --
2018-02-13 14:47:00.544 Dest filename: C:\Users\admin\Desktop\Iconysis Agent\AccessDatabaseEngine.exe
2018-02-13 14:47:00.544 Time stamp of our file: 2017-05-18 09:37:06.000
2018-02-13 14:47:00.544 Dest file exists.
2018-02-13 14:47:00.544 Time stamp of existing file: 2017-05-18 09:37:06.000
2018-02-13 14:47:00.544 Version of our file: 12.0.4518.1014
2018-02-13 14:47:00.637 Version of existing file: 12.0.4518.1014
2018-02-13 14:47:00.637 Same version. Skipping.
That most probably means that you have two entries for AccessDatabaseEngine.exe in the [Files] section.
I guess that you have one explicit entry for AccessDatabaseEngine.exe and another wildcard entry what happens to match the same file. Something like:
[Files]
Source: "\\my_Directory\*"; DestDir: "{app}"
Source: "\\my_Directory\AccessDatabaseEngine.exe"; DestDir: "{app}"; \
Flags: deleteafterinstall;
The first entry installs AccessDatabaseEngine.exe. And it does not have the deleteafterinstall flag. The second entry does not install the file (as it's installed already), hence its deleteafterinstall has no effect.

Running and compiling 'Hello, World!' in Haskell

I am new to Haskell and am having an issue running the following code:
module Main (
main
) where
main = putStrLn "Hello, world!"
SublimeHaskell tries to compile and run the above using
runhaskell hello.hs
which returns the error
hello.o: getModificationTime: invalid argument (The system cannot find the file specified.)
I have also tried to run it using
ghc --make hello.hs
with the same error. When I try to manually compile the code before running using the command line
ghc -c hello.hs
I get a different error:
CreateDirectory ".": invalid argument (Cannot create a file when that file already exists.)
On the other hand, I can run the program via the REPL without issue:
ghci
GHCi, version 8.0.1: http://www.haskel.org/ghc/ :? for help
Prelude> putStrLn "Hello, world!"
Hello, world!
If it's relevant, I am using Windows 7, and I installed GHC using the Haskell Platform installer.
***edit running the above commands with the -v flag gives the following results:
ghc -v hello.hs
Glasgow Haskell Compiler, Version 8.0.1, stage 2 booted by GHC version 7.10.2
Using binary package database: C:\Program Files\Haskell Platform\8.0.1\lib\package.conf.d\package.cache
loading package database C:\Program Files\Haskell Platform\8.0.1\lib\package.conf.d
wired-in package ghc-prim mapped to ghc-prim-0.5.0.0
wired-in package integer-gmp mapped to integer-gmp-1.0.0.1
wired-in package base mapped to base-4.9.0.0
wired-in package rts mapped to rts
wired-in package template-haskell mapped to template-haskell-2.11.0.0
wired-in package ghc mapped to ghc-8.0.1
wired-in package dph-seq not found.
wired-in package dph-par not found.
Hsc static flags:
loading package database C:\Program Files\Haskell Platform\8.0.1\lib\package.conf.d
wired-in package ghc-prim mapped to ghc-prim-0.5.0.0
wired-in package integer-gmp mapped to integer-gmp-1.0.0.1
wired-in package base mapped to base-4.9.0.0
wired-in package rts mapped to rts-1.0
wired-in package template-haskell mapped to template-haskell-2.11.0.0
wired-in package ghc mapped to ghc-8.0.1
wired-in package dph-seq not found.
wired-in package dph-par not found.
*** Chasing dependencies:
Chasing modules from: *hello.hs
*** Deleting temp files:
Deleting:
*** Deleting temp dirs:
Deleting:
hello.o: getModificationTime: invalid argument (The system cannot find the file specified.)
ghc -c -v hello.hs
Glasgow Haskell Compiler, Version 8.0.1, stage 2 booted by GHC version 7.10.2
Using binary package database: C:\Program Files\Haskell Platform\8.0.1\lib\package.conf.d\package.cache
loading package database C:\Program Files\Haskell Platform\8.0.1\lib\package.conf.d
wired-in package ghc-prim mapped to ghc-prim-0.5.0.0
wired-in package integer-gmp mapped to integer-gmp-1.0.0.1
wired-in package base mapped to base-4.9.0.0
wired-in package rts mapped to rts
wired-in package template-haskell mapped to template-haskell-2.11.0.0
wired-in package ghc mapped to ghc-8.0.1
wired-in package dph-seq not found.
wired-in package dph-par not found.
Hsc static flags:
*** Checking old interface for Main:
*** Parser [Main]:
!!! Parser [Main]: finished in 0.00 milliseconds, allocated 0.067 megabytes
*** Renamer/typechecker [Main]:
!!! Renamer/typechecker [Main]: finished in 46.80 milliseconds, allocated 15.720 megabytes
*** Desugar [Main]:
Result size of Desugar (after optimization)
= {terms: 13, types: 6, coercions: 0}
!!! Desugar [Main]: finished in 0.00 milliseconds, allocated 0.204 megabytes
*** Simplifier [Main]:
Result size of Simplifier iteration=1
= {terms: 17, types: 8, coercions: 0}
Result size of Simplifier = {terms: 17, types: 8, coercions: 0}
!!! Simplifier [Main]: finished in 0.00 milliseconds, allocated 0.171 megabytes
*** CoreTidy [Main]:
Result size of Tidy Core = {terms: 17, types: 8, coercions: 0}
!!! CoreTidy [Main]: finished in 0.00 milliseconds, allocated 2.558 megabytes
*** Deleting temp files:
Deleting:
*** Deleting temp dirs:
Deleting:
CreateDirectory ".": invalid argument (Cannot create a file when that file already exists.)
After looking around, it seems that the two packages that are listed as not found (dph-seq and dph-par) have been deprecated.
GHC requires that the file be named the same as the module in order to compile it.
However, any module can be loaded into GHCi regardless of file name. This is why repl worked but compiling did not.
In your case, therefore, you should rename the file Main.hs

Visual Basic code won't open Microsoft Excel (Office 2010)

I'm trying to write some Visual Basic code in Visual Studio 2012 that will be able to open and make changes to an existing Microsoft Excel workbook (Office 2010). This is the code I've come up with:
Dim BillingCalender As String = *Path to Excel Workbook*
Dim xlsApp As Excel.Application = New Excel.Application
Dim xlsWorkBooks As Excel.Workbooks = xlsApp.Workbooks
Dim xlsWB As Excel.Workbook = xlsWorkBooks.Open(BillingCalender)
However, whenever I try to run this, a new Excel Workbook is opened and the following error is given:
An add-in could not be found or could not be loaded
Could not create an instance of startup object ReCreateEmpty.ReCreateEmpty in assembly ReCreateEmpty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null.
************** Exception Text **************
Microsoft.VisualStudio.Tools.Applications.Runtime.CannotCreateStartupObjectException: Could not create an instance of startup object ReCreateEmpty.ReCreateEmpty in assembly ReCreateEmpty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException: Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80080005 Server execution failed (Exception from HRESULT: 0x80080005 (CO_E_SERVER_EXEC_FAILURE)).
at System.Runtime.Remoting.RemotingServices.AllocateUninitializedObject(RuntimeType objectType)
at System.Runtime.Remoting.Activation.ActivationServices.CreateInstance(RuntimeType serverType)
at System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(RuntimeType serverType, Object[] props, Boolean bNewObj)
at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark)
at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark)
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.Activator.CreateInstance(Type type)
at ReCreateEmpty.ReCreateEmpty..ctor(ApplicationFactory factory, IServiceProvider serviceProvider) in C:\Users\c33426s\Documents\Visual Studio 2012\Projects\ReCreateEmpty\ReCreateEmpty\ThisAddIn.vb:line 6
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.CreateEntryPoint(String entryPointTypeName)
--- End of inner exception stack trace ---
at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.CreateEntryPoint(String entryPointTypeName)
at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.Microsoft.VisualStudio.Tools.Office.Runtime.Interop.IExecuteCustomization2.LoadEntryPoints(IntPtr serviceProvider)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Office.Runtime
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Office.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Office.Runtime.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34294 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34283 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Security
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34291 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Security/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Security.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Applications.Hosting
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Hosting/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Hosting.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Applications.Runtime
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Runtime.dll
----------------------------------------
System.Deployment
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34280 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Deployment/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Applications.ServerDocument
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.ServerDocument/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.ServerDocument.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34251 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34285 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Xml.Linq
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
----------------------------------------
Microsoft.Office.Tools
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.dll
----------------------------------------
Microsoft.Office.Tools.Excel.Implementation
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Excel.Implementation/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Excel.Implementation.dll
----------------------------------------
Microsoft.Office.Tools.Common.Implementation
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common.Implementation/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.Implementation.dll
----------------------------------------
Microsoft.Office.Tools.Common
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.dll
----------------------------------------
ReCreateEmpty
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/c33426s/Documents/Visual%20Studio%202012/Projects/ReCreateEmpty/ReCreateEmpty/bin/Debug/ReCreateEmpty.DLL
----------------------------------------
Microsoft.Office.Tools.Common.v4.0.Utilities
Assembly Version: 10.0.0.0
Win32 Version: 10.0.30319.1
CodeBase: file:///C:/Users/c33426s/Documents/Visual%20Studio%202012/Projects/ReCreateEmpty/ReCreateEmpty/bin/Debug/Microsoft.Office.Tools.Common.v4.0.Utilities.DLL
----------------------------------------
Microsoft.Office.Tools.Excel
Assembly Version: 10.0.0.0
Win32 Version: 10.0.60724.0
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Excel/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Excel.dll
----------------------------------------
Microsoft.Office.Interop.Excel
Assembly Version: 14.0.0.0
Win32 Version: 14.0.4756.1000
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Office.Interop.Excel/14.0.0.0__71e9bce111e9429c/Microsoft.Office.Interop.Excel.dll
----------------------------------------
office
Assembly Version: 14.0.0.0
Win32 Version: 14.0.4760.1000
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/office/14.0.0.0__71e9bce111e9429c/office.dll
Could someone help me understand what the issue could be and how I can circumvent it?

I am getting an Unhandled exception error when my application tries to load 10000 records in dynamic grid control

i am working on VC++ application, where all remit transactions are displaying in one of dynamic grid control. User has to double click on that master grid control and then detail window gets popup. In that detail level transactions are displayed for that master entry. (it's like drill down detail level). Now in this detail window grid control, first time only 1000 records are displaying. To display next 10000 records in dynamic grid ctrl, user clicked on 'Get Next' button. Here is the point that application goes in error:
"Unhanded exception at 0x78594826 in Qpay.exe: 0x800000x26: A long jump has been executed." and application got closed.
Application uses Oracel11g db.
Some times it error message is like "Unhandled exception error..." and below error code displays:
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at ATL.CStringT<char,StrTraitMFC_DLL<char,ATL::ChTraitsCRT<char> > >.=(CStringT<char\,StrTraitMFC_DLL<char\,ATL::ChTraitsCRT<char> > >* , Byte* )
at CRemDetail.PopulateDatatblctrl1(CRemDetail* )
at CRemDetail.OnInitDialog(CRemDetail* )
at CRemDetail.SCOnRemDetail(CRemDetail* , UserInfoStruct* pUserInfo, Int32 lSolar, InputDetailStruct Inputs, Int32 m_lSecCode)
at CRemUnrelDlg.OnCellDoubleClick(CRemUnrelDlg* , Object sender, DataGridViewCellEventArgs e)
at CRemUnrelDlg.delegate_proxy_type.OnCellDoubleClick(Object arg0, DataGridViewCellEventArgs arg1)
at System.Windows.Forms.DataGridView.OnCellDoubleClick(DataGridViewCellEventArgs e)
at System.Windows.Forms.DataGridView.OnDoubleClick(EventArgs e)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.DataGridView.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ActiveXImpl.System.Windows.Forms.IWindowTarget.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3643 (GDR.050727-3600)
CodeBase: file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
Qpay
Assembly Version: 0.0.0.0
Win32 Version: 2, 0, 0, 0
CodeBase: file:///C:/qpay/Qpay.exe
----------------------------------------
msvcm80
Assembly Version: 8.0.50727.6195
Win32 Version: 8.00.50727.6195
CodeBase: file:///C:/WINDOWS/WinSxS/x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86/msvcm80.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3645 (GDR.050727-3600)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3644 (GDR.050727-3600)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3644 (GDR.050727-3600)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
MFCM90
Assembly Version: 9.0.30729.0
Win32 Version: 9.00.30729.6161
CodeBase: file:///C:/WINDOWS/WinSxS/x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.6161_x-ww_028bc148/MFCM90.dll
----------------------------------------
msvcm90
Assembly Version: 9.0.30729.6161
Win32 Version: 9.00.30729.6161
CodeBase: file:///C:/WINDOWS/WinSxS/x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.6161_x-ww_31a54e43/msvcm90.dll
----------------------------------------
Accessibility
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
CrystalDecisions.CrystalReports.Engine
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.CrystalReports.Engine/10.5.3700.0__692fbea5521e1304/CrystalDecisions.CrystalReports.Engine.dll
----------------------------------------
CrystalDecisions.Windows.Forms
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.Windows.Forms/10.5.3700.0__692fbea5521e1304/CrystalDecisions.Windows.Forms.dll
----------------------------------------
CrystalDecisions.Shared
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.Shared/10.5.3700.0__692fbea5521e1304/CrystalDecisions.Shared.dll
----------------------------------------
CrystalDecisions.ReportSource
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportSource/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportSource.dll
----------------------------------------
System.Configuration
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Web
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3634 (GDR.050727-3600)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
CrystalDecisions.ReportAppServer.CommLayer
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.CommLayer/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CommLayer.dll
----------------------------------------
CrystalDecisions.ReportAppServer.ClientDoc
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ClientDoc/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ClientDoc.dll
----------------------------------------
System.Data
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
CrystalDecisions.ReportAppServer.DataSetConversion
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataSetConversion/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataSetConversion.dll
----------------------------------------
CrystalDecisions.ReportAppServer.DataDefModel
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataDefModel/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataDefModel.dll
----------------------------------------
CrystalDecisions.ReportAppServer.Controllers
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.Controllers/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.Controllers.dll
----------------------------------------
CrystalDecisions.ReportAppServer.ReportDefModel
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ReportDefModel/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ReportDefModel.dll
----------------------------------------
CrystalDecisions.KeyCode
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.KeyCode/10.5.3700.0__692fbea5521e1304/CrystalDecisions.KeyCode.dll
----------------------------------------
CustomMarshalers
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll
----------------------------------------
CrystalDecisions.ReportAppServer.XmlSerialize
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.XmlSerialize/10.5.3700.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.XmlSerialize.dll
----------------------------------------
System.Web.Services
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
----------------------------------------
CrystalDecisions.Web
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.1943
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/CrystalDecisions.Web/10.5.3700.0__692fbea5521e1304/CrystalDecisions.Web.dll
----------------------------------------
CrystalDecisions.Enterprise.Framework
Assembly Version: 10.5.3700.0
Win32 Version: 10.5.0.268
CodeBase: file:///C:/WINDOWS/assembly/GAC/CrystalDecisions.Enterprise.Framework/10.5.3700.0__692fbea5521e1304/CrystalDecisions.Enterprise.Framework.dll
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Resources