feat: KS_PRUEFEN oeffnet die erzeugte CSV automatisch

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-24 15:42:28 +02:00
parent 27c7101f79
commit e4a04f90d9
+5
View File
@@ -119,6 +119,11 @@
(close fh) (close fh)
(princ (strcat "\n>>> KS-Pruefung fertig: " (itoa n) " Bloecke -> " fpath)) (princ (strcat "\n>>> KS-Pruefung fertig: " (itoa n) " Bloecke -> " fpath))
(princ (strcat "\n (Spalten: KS_EIN/KS_AUS je 2D u. 3D, *_diff=groesste Komponentenabweichung, dxyz=KS_AUS-KS_EIN, Status)")) (princ (strcat "\n (Spalten: KS_EIN/KS_AUS je 2D u. 3D, *_diff=groesste Komponentenabweichung, dxyz=KS_AUS-KS_EIN, Status)"))
;; CSV direkt mit dem Standardprogramm (z.B. Excel) oeffnen; fehlertolerant.
(vl-catch-all-apply
(function (lambda ()
(startapp "cmd.exe"
(strcat "/c start \"\" \"" (vl-string-translate "/" "\\" fpath) "\"")))))
(princ) (princ)
) )