在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#根据Biff8生成Excel

C#根据Biff8生成Excel

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:1.99M
  • 下载次数:4
  • 浏览次数:24
  • 发布时间:2023-12-18
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: Excel EXCE if 生成 CE

实例介绍

【实例简介】C#根据Biff8生成Excel
无需引用office组件生成Excel(开源)

【实例截图】

from clipboard

【核心代码】

.
├── Biff8ToExcel
│   ├── Biff8_C#_Excel
│   │   ├── Biff8
│   │   │   ├── BaseTwoLinkList.cs
│   │   │   ├── Biff8.csproj
│   │   │   ├── Biff8.csproj.user
│   │   │   ├── Biff8ExcelException.cs
│   │   │   ├── COM
│   │   │   │   ├── AxMemoryStream.cs
│   │   │   │   ├── COMStream.cs
│   │   │   │   ├── IEnumSTATSTG.cs
│   │   │   │   ├── IStorage.cs
│   │   │   │   ├── IStream.cs
│   │   │   │   ├── NativeMethods.cs
│   │   │   │   └── Storage.cs
│   │   │   ├── Excel
│   │   │   │   ├── BinaryWriter.cs
│   │   │   │   ├── BoundSheet.cs
│   │   │   │   ├── ColInfo.cs
│   │   │   │   ├── DBCell.cs
│   │   │   │   ├── DefColWidth.cs
│   │   │   │   ├── ExcelBinaryWriter.cs
│   │   │   │   ├── ExcelCell.cs
│   │   │   │   ├── ExcelCellLink.cs
│   │   │   │   ├── ExcelCellStyle.cs
│   │   │   │   ├── ExcelCells.cs
│   │   │   │   ├── ExcelFont.cs
│   │   │   │   ├── ExcelFooter.cs
│   │   │   │   ├── ExcelFormat.cs
│   │   │   │   ├── ExcelHeader.cs
│   │   │   │   ├── ExcelPrintSetup.cs
│   │   │   │   ├── ExcelRow.cs
│   │   │   │   ├── ExcelRowLink.cs
│   │   │   │   ├── ExcelSst.cs
│   │   │   │   ├── ExcelWorkbook.cs
│   │   │   │   ├── ExcelWorksheet.cs
│   │   │   │   ├── ExternSheet.cs
│   │   │   │   ├── Helper.cs
│   │   │   │   ├── Index.cs
│   │   │   │   ├── MergedCells.cs
│   │   │   │   ├── SheetProtection.cs
│   │   │   │   └── WorkSheetCollection.cs
│   │   │   ├── ExportExcel8.snk
│   │   │   ├── Formulas
│   │   │   │   ├── Calculator.cs
│   │   │   │   ├── CellCollection.cs
│   │   │   │   ├── Formula.cs
│   │   │   │   ├── Referencer.cs
│   │   │   │   └── ReversePolishNotation.cs
│   │   │   ├── Globals.cs
│   │   │   ├── Interfaces
│   │   │   │   ├── ICell.cs
│   │   │   │   ├── IExternSheet.cs
│   │   │   │   └── IRecords.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Records
│   │   │   │   ├── BMargin.cs
│   │   │   │   ├── BOF.cs
│   │   │   │   ├── Blank.cs
│   │   │   │   ├── BoundSheet.cs
│   │   │   │   ├── Calcmode.cs
│   │   │   │   ├── ColInfo.cs
│   │   │   │   ├── DBCell.cs
│   │   │   │   ├── DefaultColWidth.cs
│   │   │   │   ├── DefaultRowHeight.cs
│   │   │   │   ├── Dimensions.cs
│   │   │   │   ├── EOF.cs
│   │   │   │   ├── ExtSSt.cs
│   │   │   │   ├── ExtendedFormat.cs
│   │   │   │   ├── ExternSheet.cs
│   │   │   │   ├── Font.cs
│   │   │   │   ├── Footer.cs
│   │   │   │   ├── Format.cs
│   │   │   │   ├── HCenter.cs
│   │   │   │   ├── Header.cs
│   │   │   │   ├── INdex.cs
│   │   │   │   ├── LMargin.cs
│   │   │   │   ├── Label.cs
│   │   │   │   ├── LabelSST.cs
│   │   │   │   ├── MergedCells.cs
│   │   │   │   ├── Number.cs
│   │   │   │   ├── ObjectProtection.cs
│   │   │   │   ├── Password.cs
│   │   │   │   ├── PrintGridLines.cs
│   │   │   │   ├── PrintSheetHeaders.cs
│   │   │   │   ├── Protect.cs
│   │   │   │   ├── RK.cs
│   │   │   │   ├── RMargin.cs
│   │   │   │   ├── Row.cs
│   │   │   │   ├── SST.cs
│   │   │   │   ├── ScenProtect.cs
│   │   │   │   ├── Selection.cs
│   │   │   │   ├── Setup.cs
│   │   │   │   ├── Style.cs
│   │   │   │   ├── SupBook.cs
│   │   │   │   ├── TMargin.cs
│   │   │   │   ├── VCenter.cs
│   │   │   │   ├── WSBool.cs
│   │   │   │   ├── Window1.cs
│   │   │   │   ├── Window2.cs
│   │   │   │   └── WindowProtect.cs
│   │   │   ├── TArray.cs
│   │   │   └── TwoLinkNode.cs
│   │   ├── Biff8ToExcel.sln
│   │   ├── Biff8ToExcel.suo
│   │   └── test
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   └── AssemblyInfo.cs
│   │       ├── test.csproj
│   │       └── test.csproj.user
│   ├── StorageOle
│   │   ├── StorageOle
│   │   │   ├── COM
│   │   │   │   ├── AxMemoryStream.cs
│   │   │   │   ├── IEnumSTATSTG.cs
│   │   │   │   ├── IStorage.cs
│   │   │   │   ├── IStream.cs
│   │   │   │   ├── NativeMethods.cs
│   │   │   │   ├── Storage.cs
│   │   │   │   └── Stream.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── StorageOle.csproj
│   │   │   ├── StorageOle.csproj.user
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── StorageOle.exe
│   │   │   │   │   ├── StorageOle.pdb
│   │   │   │   │   └── StorageOle.vshost.exe
│   │   │   │   └── Release
│   │   │   └── obj
│   │   │       ├── Debug
│   │   │       │   ├── Refactor
│   │   │       │   ├── StorageOle.Form1.resources
│   │   │       │   ├── StorageOle.Properties.Resources.resources
│   │   │       │   ├── StorageOle.csproj.GenerateResource.Cache
│   │   │       │   ├── StorageOle.exe
│   │   │       │   ├── StorageOle.pdb
│   │   │       │   └── TempPE
│   │   │       ├── Release
│   │   │       └── StorageOle.csproj.FileList.txt
│   │   ├── StorageOle.sln
│   │   └── StorageOle.suo
│   ├── biff8_vb_Excel
│   │   ├── Excel 8 Group.vbg
│   │   ├── Excel8.dll
│   │   ├── Excel8.exp
│   │   ├── Excel8.lib
│   │   ├── Excel8Formulas.dll
│   │   ├── Excel8Formulas.exp
│   │   ├── Excel8Formulas.lib
│   │   ├── Excel8Interface.dll
│   │   ├── Excel8Interface.exp
│   │   ├── Excel8Interface.lib
│   │   ├── Excel8Records.dll
│   │   ├── Excel8Records.exp
│   │   ├── Excel8Records.lib
│   │   ├── Formulas
│   │   │   ├── AreaPtg.cls
│   │   │   ├── AreaReference.cls
│   │   │   ├── Calculator.cls
│   │   │   ├── CellReference.cls
│   │   │   ├── Excel8Formulas.vbp
│   │   │   ├── Excel8Formulas.vbw
│   │   │   ├── Formula.cls
│   │   │   ├── FormulaParser.cls
│   │   │   ├── Globals.bas
│   │   │   ├── MSSCCPRJ.SCC
│   │   │   ├── Parser.cls
│   │   │   ├── Reference.cls
│   │   │   ├── ReferencePtg.cls
│   │   │   └── ReversePolishNotation.cls
│   │   ├── Interface
│   │   │   ├── Excel8Interface.vbp
│   │   │   ├── Excel8Interface.vbw
│   │   │   ├── ExcelInterface.vbw
│   │   │   ├── ICell.cls
│   │   │   ├── IExternSheet.cls
│   │   │   └── MSSCCPRJ.SCC
│   │   ├── Read Me.txt
│   │   ├── Records
│   │   │   ├── API.bas
│   │   │   ├── BMargin.cls
│   │   │   ├── BOF.cls
│   │   │   ├── Blank.cls
│   │   │   ├── BoundSheet.cls
│   │   │   ├── Calcmode.cls
│   │   │   ├── ColInfo.cls
│   │   │   ├── DBCell.cls
│   │   │   ├── DefaultColWidth.cls
│   │   │   ├── Dimensions.cls
│   │   │   ├── EOF.cls
│   │   │   ├── Excel8Records.vbp
│   │   │   ├── Excel8Records.vbw
│   │   │   ├── ExtendedFormat.cls
│   │   │   ├── ExternSheet.cls
│   │   │   ├── Font.cls
│   │   │   ├── Footer.cls
│   │   │   ├── Format.cls
│   │   │   ├── HCenter.cls
│   │   │   ├── Header.cls
│   │   │   ├── Index.cls
│   │   │   ├── LMargin.cls
│   │   │   ├── LabelSST.cls
│   │   │   ├── MSSCCPRJ.SCC
│   │   │   ├── MergedCell.cls
│   │   │   ├── MulBlank.cls
│   │   │   ├── Number.cls
│   │   │   ├── ObjectProtection.cls
│   │   │   ├── Password.cls
│   │   │   ├── PrintGridLines.cls
│   │   │   ├── PrintSheetHeaders.cls
│   │   │   ├── Protect.cls
│   │   │   ├── RK.cls
│   │   │   ├── RMargin.cls
│   │   │   ├── Row.cls
│   │   │   ├── SST.cls
│   │   │   ├── ScenProtect.cls
│   │   │   ├── Selection.cls
│   │   │   ├── Setup.cls
│   │   │   ├── Style.cls
│   │   │   ├── SupBook.cls
│   │   │   ├── TMargin.cls
│   │   │   ├── VCenter.cls
│   │   │   ├── WSBool.cls
│   │   │   ├── Window1.cls
│   │   │   ├── Window2.cls
│   │   │   └── WindowProtect.cls
│   │   ├── Release
│   │   │   ├── Excel8.dll
│   │   │   ├── Excel8Formulas.dll
│   │   │   ├── Excel8Formulas.exp
│   │   │   ├── Excel8Formulas.lib
│   │   │   ├── Excel8Interface.dll
│   │   │   ├── Excel8Interface.exp
│   │   │   ├── Excel8Interface.lib
│   │   │   ├── Excel8Records.dll
│   │   │   ├── Excel8Records.exp
│   │   │   ├── Excel8Records.lib
│   │   │   ├── RegTypeLib.exe
│   │   │   ├── Storage.dll
│   │   │   ├── Test.exe
│   │   │   └── olelib.tlb
│   │   ├── Test
│   │   │   ├── Form1.frm
│   │   │   ├── MSSCCPRJ.SCC
│   │   │   ├── Test.vbp
│   │   │   ├── Test.vbw
│   │   │   └── test1.xls
│   │   ├── Test.exe
│   │   └── Workbook
│   │       ├── API.bas
│   │       ├── BinaryWriter.cls
│   │       ├── BoundSheet.cls
│   │       ├── ColInfo.cls
│   │       ├── DBCell.cls
│   │       ├── DefColWidth.cls
│   │       ├── Excel8.vbp
│   │       ├── Excel8.vbw
│   │       ├── ExcelCell.cls
│   │       ├── ExcelCellStyle.cls
│   │       ├── ExcelFont.cls
│   │       ├── ExcelFormat.cls
│   │       ├── ExcelRow.cls
│   │       ├── ExcelWorkbook.cls
│   │       ├── ExcelWorksheet.cls
│   │       ├── ExternSheet.cls
│   │       ├── Footer.cls
│   │       ├── Global.cls
│   │       ├── Header.cls
│   │       ├── Helper.cls
│   │       ├── Index.cls
│   │       ├── LabelSST.cls
│   │       ├── MSSCCPRJ.SCC
│   │       ├── MergedCells.cls
│   │       ├── Registry.cls
│   │       ├── SST.cls
│   │       ├── Setup.cls
│   │       ├── SheetProtection.cls
│   │       └── WorkSheets.cls
│   ├── excelfileformat.pdf
│   ├── readme.txt
│   ├── storage
│   │   ├── Compatible
│   │   │   └── Storage.dll
│   │   ├── DocProperties.cls
│   │   ├── Elements.cls
│   │   ├── MSSCCPRJ.SCC
│   │   ├── OLEStorage.cls
│   │   ├── STATSTG.cls
│   │   ├── Storage.cls
│   │   ├── Storage.dll
│   │   ├── Storage.vbp
│   │   ├── Storage.vbw
│   │   ├── StorageTest.vbg
│   │   ├── Stream.cls
│   │   ├── Test
│   │   │   ├── MSSCCPRJ.SCC
│   │   │   ├── StorageTest.exe
│   │   │   ├── StorageTest.frm
│   │   │   ├── StorageTest.vbp
│   │   │   ├── StorageTest.vbw
│   │   │   └── sample.stg
│   │   ├── mdlStorage.bas
│   │   └── mdlStreamFunc.bas
│   └── tl_ole
│       ├── Implements
│       │   ├── cmdtarget_impl.inc
│       │   ├── dataobj_impl.inc
│       │   ├── enum_impl.inc
│       │   ├── evc_impl.inc
│       │   ├── factory.inc
│       │   ├── inplace_impl.inc
│       │   ├── olelib2.odl
│       │   ├── olelib2.tlb
│       │   ├── oleobj_impl.inc
│       │   ├── persist_impl.inc
│       │   ├── propbag_impl.inc
│       │   ├── servprov_impl.inc
│       │   ├── shell_impl.inc
│       │   ├── stream_impl.inc
│       │   ├── urlhist_impl.inc
│       │   ├── urlmon_impl.inc
│       │   └── viewobj_impl.inc
│       ├── autocomp.inc
│       ├── bindctx.inc
│       ├── callfunc.inc
│       ├── comcat.inc
│       ├── const.inc
│       ├── createtl.inc
│       ├── custdoc.inc
│       ├── dataobj.inc
│       ├── dockwind.inc
│       ├── enum.inc
│       ├── errinf.inc
│       ├── evc.inc
│       ├── hlink.inc
│       ├── ifaces.inc
│       ├── imapi.inc
│       ├── inplace.inc
│       ├── kernel32.inc
│       ├── lockb.inc
│       ├── malloc.inc
│       ├── marshal.inc
│       ├── objsafe.inc
│       ├── ole32.inc
│       ├── oleaut32.inc
│       ├── oledlg.inc
│       ├── oledoc.inc
│       ├── olelib.odl
│       ├── olelib.tlb
│       ├── oleobj.inc
│       ├── olepro32.inc
│       ├── olewnd.inc
│       ├── ows.inc
│       ├── persist.inc
│       ├── ppb.inc
│       ├── propbag.inc
│       ├── propstg.inc
│       ├── recinf.inc
│       ├── riched.inc
│       ├── secmgr.inc
│       ├── shell.inc
│       ├── shell32.inc
│       ├── shellext.inc
│       ├── shlwapi.inc
│       ├── storage.inc
│       ├── stream.inc
│       ├── tasksch.inc
│       ├── tom.inc
│       ├── typelib.inc
│       ├── types.inc
│       ├── unk.inc
│       ├── url.inc
│       ├── urlhist.inc
│       ├── urlmon.inc
│       ├── user32.inc
│       ├── viewobj.inc
│       └── wmp.inc
└── C#根据Biff8生成Excel_Biff8ToExcel.rar

35 directories, 355 files


标签: Excel EXCE if 生成 CE

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警