Gerhard Stegemann
Gerhard Stegemann
I'm experiencing also this behaviour. The logic in the NSIS script requires some changes.
This would fix the "Another version installed" prompt: ``` diff --git a/Installer/Installer_Algemeen.nsh b/Installer/Installer_Algemeen.nsh index bdd2cd7..f88982d 100644 --- a/Installer/Installer_Algemeen.nsh +++ b/Installer/Installer_Algemeen.nsh @@ -6,12 +6,12 @@ ; Copyright (c) 2017 ir. W.E....
After some testing I discovered more details. Regarding ":file open" command: - removing the enclosing quotes of the filename in ":file open" creates at least an empty file and does...
I found and fixed the reason for exception 0xc0000374. In function WinFile::FormatV there is an obsolete "delete" statement: ``` diff --git a/BaseLibrary/WinFile.cpp b/BaseLibrary/WinFile.cpp index 3e6afdd..7090ebf 100644 --- a/BaseLibrary/WinFile.cpp +++ b/BaseLibrary/WinFile.cpp...
Hello Edwig, many thanks. I will test it next week. Best regards, Gerhard
Hello Edwig, I triedy to test ":file" command fix. The test failed. Installing Version 3.4.2 32 Bits installed an executable of ODBCQueryTool.exe dated 30.12.2023. I think this happens due to...
Removing the #include statement did not work. The following changes do work: - changing the #include statement to "#include "..\\..\\StyleFramework\StyleFramework.rc"" - copying all StyleFramework\res\ScrollBar?.bmp files to QueryTool\res. After that builds...
I did some more testing. In fact "VALUE" is a reserved word. And I think I found the reason for the syntax error message: ``` Update PropVals set [ value...
I ran tests with your script: ``` Status Affected rows Result 0 CREATE TABLE test ( one INT, two CHAR(100), [Value] CHAR(128) )..... : OK 1 INSERT INTO test VALUES...
I tested this again. And it works. Probably I didn't execute the script from the beginning. I.e. the cursor was somewhere in the middle of the CREATE TABLE statement while...