Skip to content

Commit

Permalink
Merge pull request #5 from ws-garcia/fix-utf8-encoding-missing-enum
Browse files Browse the repository at this point in the history
Update CSVinterface.cls
  • Loading branch information
ws-garcia authored Oct 24, 2020
2 parents eab028a + adca3a0 commit e07f718
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/CSVinterface.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION 1.0 CLASS
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Expand All @@ -9,7 +9,7 @@ Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'#
'////////////////////////////////////////////////////////////////////////////////////////////
' Copyright © 2020 W. García
' Copyright © 2020 W. García
' GPL-3.0 license | https://github.com/ws-garcia/
' https://ingwilfredogarcia.wordpress.com
'#
Expand All @@ -28,7 +28,7 @@ Attribute VB_Exposed = False
' GENERAL INFO:
' This class is inspired in a work available in
' https://www.freevbcode.com/ShowCode.asp?ID=3110. The class module was designed and tested
' using Windows 7® and is supose to work as well over more recent Microsoft™ operative
' using Windows 7® and is supose to work as well over more recent Microsoft™ operative
' system.
'#
' Use CSVinterface class to simplify the work with comma separated value (CSV) files.
Expand Down Expand Up @@ -110,6 +110,14 @@ Public Enum QuotationMode
Critical = 0 '--------------Only fields that includes special chars.
All = 1
End Enum
Public Enum abCharsets
abError = 0
abANSI = 1
abUnicode = 2
abUnicodeBigEndian = 3
abUTF8 = 4
ebUnknown = 5
End Enum
'////////////////////////////////////////////////////////////////////////////////////////////
'#
'////////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit e07f718

Please sign in to comment.