diff --git a/vba/VBA-CSV.xlsm/AuditSheetComments.txt b/vba/VBA-CSV.xlsm/AuditSheetComments.txt index 72b1ce2..de07e36 100644 --- a/vba/VBA-CSV.xlsm/AuditSheetComments.txt +++ b/vba/VBA-CSV.xlsm/AuditSheetComments.txt @@ -1,4 +1,5 @@ Version Date Time Author Comment +204 24-Nov-2022 14:05 Philip Swannell Bumped to v0.24 203 24-Nov-2022 13:49 Philip Swannell Changed CSVWrite so that when called on PC for which the display language of VBA is not English, then errors are written to file using the English-language representation (e.g. #SPILL!). This makes round-tripping work correctly. 202 18-Nov-2022 12:22 Philip Swannell Further changes to ReThrow. Error strings from CSVRead and CSVWrite are now consise unless m_ErrorStringsEmbedCallStack is set to True. 201 18-Nov-2022 11:13 Philip Swannell Change to expected results for tests to soft code the string representation of True and False, so that tests pass on non English language PCs. diff --git a/vba/VBA-CSV.xlsm/VBA-CSV.xlsm b/vba/VBA-CSV.xlsm/VBA-CSV.xlsm index 95fd89e..e5e94fc 100644 Binary files a/vba/VBA-CSV.xlsm/VBA-CSV.xlsm and b/vba/VBA-CSV.xlsm/VBA-CSV.xlsm differ diff --git a/vba/VBA-CSV.xlsm/modCSVReadWrite.bas b/vba/VBA-CSV.xlsm/modCSVReadWrite.bas index e15b78f..c8c9e0b 100644 --- a/vba/VBA-CSV.xlsm/modCSVReadWrite.bas +++ b/vba/VBA-CSV.xlsm/modCSVReadWrite.bas @@ -3,7 +3,7 @@ Attribute VB_Name = "modCSVReadWrite" ' Copyright (C) 2021 - Philip Swannell ' License MIT (https://opensource.org/licenses/MIT) ' Document: https://github.com/PGS62/VBA-CSV#readme -' This version at: https://github.com/PGS62/VBA-CSV/releases/tag/v0.23 +' This version at: https://github.com/PGS62/VBA-CSV/releases/tag/v0.24 'Installation: '1) Import this module into your project (Open VBA Editor, Alt + F11; File > Import File). @@ -25,7 +25,7 @@ Attribute VB_Name = "modCSVReadWrite" '4) An alternative (or additional) approach to providing help on CSVRead and CSVWrite is: ' a) Install Excel-DNA Intellisense. See https://github.com/Excel-DNA/IntelliSense#getting-started ' b) Copy the worksheet _Intellisense_ from -' https://github.com/PGS62/VBA-CSV/releases/download/v0.23/VBA-CSV-Intellisense.xlsx +' https://github.com/PGS62/VBA-CSV/releases/download/v0.24/VBA-CSV-Intellisense.xlsx ' into the workbook that contains this VBA code. Option Explicit diff --git a/workbooks/VBA-CSV.xlsm b/workbooks/VBA-CSV.xlsm index 95fd89e..e5e94fc 100644 Binary files a/workbooks/VBA-CSV.xlsm and b/workbooks/VBA-CSV.xlsm differ