From f8f2598d1710ba2b27b2782a35bcaa06797d45ff Mon Sep 17 00:00:00 2001 From: updsv7 Date: Mon, 13 Apr 2026 11:40:31 +0900 Subject: [PATCH] Change Japanese MsgBox to English --- vba_code_kukan_detail_master.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vba_code_kukan_detail_master.txt b/vba_code_kukan_detail_master.txt index 80715b2..ed26d79 100644 --- a/vba_code_kukan_detail_master.txt +++ b/vba_code_kukan_detail_master.txt @@ -357,7 +357,7 @@ Sub validateDetailDataButton() lastRow = ws.Cells(ws.Rows.Count, "C").End(xlUp).Row If lastRow < 7 Then - MsgBox "データがありません。", vbExclamation + MsgBox "No data found.", vbExclamation Exit Sub End If @@ -369,7 +369,7 @@ Sub validateDetailDataButton() End If Next r - MsgBox "検証完了。エラー: " & errorCount & " 件", vbInformation + MsgBox "Validation complete. Errors: " & errorCount & ", ", vbInformation End Sub Sub ExportMasterDetailData()