feat: add worksheet button handlers for BOM systems
All checks were successful
NTFY Notification / notify (push) Successful in 3s

Add CommandButton click event handlers to worksheets:
- Sheet10: Trigger BOM Configuration System (RunBOMConversion)
- Sheet3: Trigger BOM Extraction System (RunBOMExtraction)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-02-27 08:39:01 +08:00
parent 45d1c1780f
commit 0fc2cd1e92
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
Private Sub CommandButton1_Click()
Call RunBOMConversion
End Sub

View File

@@ -0,0 +1,3 @@
Private Sub CommandButton1_Click()
Call RunBOMExtraction
End Sub