Add ReadCSVFileWithUtf8 and use it in Z1

This commit is contained in:
updsv7
2026-04-13 19:00:50 +09:00
parent 5c739dfe55
commit c482518135
2 changed files with 23 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ Sub Z1_ImportMasterDetailData()
If filePath = "" Then Exit Sub
' Step 2: Read CSV
lines = ReadCSVFile(filePath)
lines = ReadCSVFileWithUtf8(filePath)
' Step 3: Validate column count
If Not ValidateCSVColumnCount(lines, 7) Then Exit Sub