From fe9bb8935490228618c298ea6a0ae292f1757505 Mon Sep 17 00:00:00 2001 From: Doug Macintosh Date: Tue, 31 Mar 2026 11:41:53 -0400 Subject: [PATCH] Fixed stream BDF Excel output to .xlsx --- _Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_Main.cs b/_Main.cs index 29f7f92..9d47f0e 100644 --- a/_Main.cs +++ b/_Main.cs @@ -1218,7 +1218,7 @@ namespace bdf //Store output docs as memorystreams and deal with them all at once try { - workbook.SaveToStream(bdf_as_ms); + workbook.SaveToStream(bdf_as_ms, FileFormat.Version2016); } catch (Exception e) {