Skip to content

Commit adca3a0

Browse files
committed
Update CSVinterface.cls
1 parent eab028a commit adca3a0

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/CSVinterface.cls

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION 1.0 CLASS
1+
VERSION 1.0 CLASS
22
BEGIN
33
MultiUse = -1 'True
44
END
@@ -9,7 +9,7 @@ Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
'#
1111
'////////////////////////////////////////////////////////////////////////////////////////////
12-
' Copyright © 2020 W. García
12+
' Copyright © 2020 W. García
1313
' GPL-3.0 license | https://github.com/ws-garcia/
1414
' https://ingwilfredogarcia.wordpress.com
1515
'#
@@ -28,7 +28,7 @@ Attribute VB_Exposed = False
2828
' GENERAL INFO:
2929
' This class is inspired in a work available in
3030
' https://www.freevbcode.com/ShowCode.asp?ID=3110. The class module was designed and tested
31-
' using Windows 7® and is supose to work as well over more recent Microsoft™ operative
31+
' using Windows 7® and is supose to work as well over more recent Microsoft™ operative
3232
' system.
3333
'#
3434
' Use CSVinterface class to simplify the work with comma separated value (CSV) files.
@@ -110,6 +110,14 @@ Public Enum QuotationMode
110110
Critical = 0 '--------------Only fields that includes special chars.
111111
All = 1
112112
End Enum
113+
Public Enum abCharsets
114+
abError = 0
115+
abANSI = 1
116+
abUnicode = 2
117+
abUnicodeBigEndian = 3
118+
abUTF8 = 4
119+
ebUnknown = 5
120+
End Enum
113121
'////////////////////////////////////////////////////////////////////////////////////////////
114122
'#
115123
'////////////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)