在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 免费DataGridView打印及.NET轻松打印控件5.5版(VB打印,C#打印)

免费DataGridView打印及.NET轻松打印控件5.5版(VB打印,C#打印)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:13.20M
  • 下载次数:17
  • 浏览次数:53
  • 发布时间:2023-12-22
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: DataGridView GridView datagrid .NET view

实例介绍

【实例简介】免费DataGridView打印及.NET轻松打印控件5.5版(VB打印,C#打印)
9、Excel导出功能,可以将DataGridView和GridView导出为Excel文件,5.2版控件还增加了不依赖Office的导出Excel功能,而且速度非常快,5.4版还增加了合并单元格的导出功能。 10、打印DataGridView时的打印方案保存与...

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── DataGridView打印控件5.5版
│   ├── WPF中打印测试
│   │   ├── WPF中打印测试
│   │   │   ├── Application.xaml
│   │   │   ├── Application.xaml.vb
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.vb
│   │   │   ├── My Project
│   │   │   │   ├── AssemblyInfo.vb
│   │   │   │   ├── MyExtensions
│   │   │   │   │   └── MyWpfExtension.vb
│   │   │   │   ├── Resources.Designer.vb
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.vb
│   │   │   │   └── Settings.settings
│   │   │   ├── WPF中打印测试.vbproj
│   │   │   ├── WPF中打印测试.vbproj.user
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   ├── mslogo.jpg
│   │   │   └── obj
│   │   │       └── x86
│   │   │           └── Debug
│   │   │               ├── Application.g.vb
│   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │               ├── GenerateResource-ResGen.read.1.tlog
│   │   │               ├── GenerateResource-ResGen.write.1.tlog
│   │   │               ├── MainWindow.baml
│   │   │               ├── MainWindow.g.vb
│   │   │               ├── ResolveAssemblyReference.cache
│   │   │               ├── TempPE
│   │   │               ├── WPF测试.Resources.resources
│   │   │               ├── WPF中打印测试.exe
│   │   │               ├── WPF中打印测试.g.resources
│   │   │               ├── WPF中打印测试.pdb
│   │   │               ├── WPF中打印测试.vbproj.FileListAbsolute.txt
│   │   │               ├── WPF中打印测试.xml
│   │   │               └── WPF中打印测试_MarkupCompile.cache
│   │   ├── WPF中打印测试.sln
│   │   └── WPF中打印测试.suo
│   ├── 打印控件
│   │   ├── DotNetPrint.dll
│   │   ├── DotNetPrint.xml
│   │   ├── NET4.0下专用打印控件
│   │   │   ├── DotNetPrint40.dll
│   │   │   ├── DotNetPrint40.xml
│   │   │   ├── definesrcipt.txt
│   │   │   └── zxing.dll
│   │   ├── definesrcipt.txt
│   │   ├── zxing.dll
│   │   ├── 打印控件安装.msi
│   │   ├── 控件文件说明.txt
│   │   ├── 打印控件帮助文档.chm
│   │   └── 帮助文件打不开的解决办法.txt
│   ├── 文件说明.txt
│   ├── 新增功能.txt
│   └── 窗口程序使用演示
│       ├── DotNetPrint.dll
│       ├── Microsoft.Office.Interop.Excel.dll
│       ├── Microsoft.Office.Interop.Word.dll
│       ├── Northwind.mdb
│       ├── definesrcipt.txt
│       ├── rtf1.rtf
│       ├── rtf2.rtf
│       ├── zxing.dll
│       ├── 多栏报表.mb
│       ├── 支票套打.mb
│       ├── 普通报表.mb
│       ├── 分组报表1.mb
│       ├── 分组报表2.mb
│       ├── 普通报表2.mb
│       ├── 计算公式报表.mb
│       ├── 计算字段报表.mb
│       ├── 演示程序源代码
│       │   ├── C#2005编写的测试程序(仅简单测试)
│       │   │   └── PrintTest
│       │   │       ├── Form1.Designer.cs
│       │   │       ├── Form1.cs
│       │   │       ├── Form1.resx
│       │   │       ├── Form2.Designer.cs
│       │   │       ├── Form2.cs
│       │   │       ├── Form2.resx
│       │   │       ├── Northwind.mdb
│       │   │       ├── NorthwindDataSet.Designer.cs
│       │   │       ├── NorthwindDataSet.xsc
│       │   │       ├── NorthwindDataSet.xsd
│       │   │       ├── NorthwindDataSet.xss
│       │   │       ├── PrintTest.csproj
│       │   │       ├── PrintTest.csproj.user
│       │   │       ├── PrintTest.sln
│       │   │       ├── PrintTest.suo
│       │   │       ├── Program.cs
│       │   │       ├── Properties
│       │   │       │   ├── AssemblyInfo.cs
│       │   │       │   ├── Resources.Designer.cs
│       │   │       │   ├── Resources.resx
│       │   │       │   ├── Settings.Designer.cs
│       │   │       │   └── Settings.settings
│       │   │       └── app.config
│       │   ├── DotNetPrint.dll
│       │   ├── DotNetPrint.xml
│       │   ├── zxing.dll
│       │   ├── 条码测试
│       │   │   ├── 条码测试
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── app.config
│       │   │   │   ├── bin
│       │   │   │   ├── 条码测试.csproj
│       │   │   │   └── 条码测试.csproj.user
│       │   │   ├── 条码测试.sln
│       │   │   └── 条码测试.suo
│       │   ├── 请假单打印
│       │   │   ├── 请假单打印
│       │   │   │   ├── Form1.Designer.vb
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Form1.vb
│       │   │   │   ├── My Project
│       │   │   │   │   ├── Application.Designer.vb
│       │   │   │   │   ├── Application.myapp
│       │   │   │   │   ├── AssemblyInfo.vb
│       │   │   │   │   ├── Resources.Designer.vb
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.vb
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── app.config
│       │   │   │   ├── bin
│       │   │   │   ├── 请假单打印.vbproj
│       │   │   │   └── 请假单打印.vbproj.user
│       │   │   ├── 请假单打印.sln
│       │   │   └── 请假单打印.suo
│       │   ├── 账单打印(C#)
│       │   │   ├── 账单打印
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   ├── install_button.png
│       │   │   │   ├── 账单打印.csproj
│       │   │   │   └── 账单打印.csproj.user
│       │   │   ├── 账单打印.sln
│       │   │   └── 账单打印.suo
│       │   ├── 标签打印测试
│       │   │   ├── labeltest
│       │   │   │   ├── Form1.Designer.vb
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Form1.vb
│       │   │   │   ├── My Project
│       │   │   │   │   ├── Application.Designer.vb
│       │   │   │   │   ├── Application.myapp
│       │   │   │   │   ├── AssemblyInfo.vb
│       │   │   │   │   ├── Resources.Designer.vb
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.vb
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   ├── labeltest.vbproj
│       │   │   │   └── labeltest.vbproj.user
│       │   │   ├── labeltest.sln
│       │   │   └── labeltest.suo
│       │   ├── 汇总打印测试
│       │   │   ├── 汇总打印测试
│       │   │   │   ├── Form10.designer.vb
│       │   │   │   ├── Form10.resx
│       │   │   │   ├── Form10.vb
│       │   │   │   ├── My Project
│       │   │   │   │   ├── Application.Designer.vb
│       │   │   │   │   ├── Application.myapp
│       │   │   │   │   ├── AssemblyInfo.vb
│       │   │   │   │   ├── Resources.Designer.vb
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.vb
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   ├── 汇总打印测试.vbproj
│       │   │   │   └── 汇总打印测试.vbproj.user
│       │   │   ├── 汇总打印测试.sln
│       │   │   └── 汇总打印测试.suo
│       │   ├── 会客单打印(C#)
│       │   │   ├── 会客单打印
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   ├── user.bmp
│       │   │   │   ├── 会客单打印.csproj
│       │   │   │   └── 会客单打印.csproj.user
│       │   │   ├── 会客单打印.sln
│       │   │   └── 会客单打印.suo
│       │   ├── 工作证打印测试
│       │   │   └── 工作证打印
│       │   │       ├── 工作证打印
│       │   │       │   ├── Form1.Designer.vb
│       │   │       │   ├── Form1.resx
│       │   │       │   ├── Form1.vb
│       │   │       │   ├── My Project
│       │   │       │   │   ├── Application.Designer.vb
│       │   │       │   │   ├── Application.myapp
│       │   │       │   │   ├── AssemblyInfo.vb
│       │   │       │   │   ├── Resources.Designer.vb
│       │   │       │   │   ├── Resources.resx
│       │   │       │   │   ├── Settings.Designer.vb
│       │   │       │   │   └── Settings.settings
│       │   │       │   ├── bin
│       │   │       │   │   ├── Debug
│       │   │       │   │   └── Release
│       │   │       │   ├── car.png
│       │   │       │   ├── 工作证打印.vbproj
│       │   │       │   └── 工作证打印.vbproj.user
│       │   │       ├── 工作证打印.sln
│       │   │       └── 工作证打印.suo
│       │   ├── 演示程序源代码(VB2008编写)
│       │   │   ├── AboutBox1.Designer.vb
│       │   │   ├── AboutBox1.resx
│       │   │   ├── AboutBox1.vb
│       │   │   ├── AddEasyReportToVB2008Print.designer.vb
│       │   │   ├── AddEasyReportToVB2008Print.resx
│       │   │   ├── AddEasyReportToVB2008Print.vb
│       │   │   ├── ApplicationEvents.vb
│       │   │   ├── ChartletTobmp.Designer.vb
│       │   │   ├── ChartletTobmp.resx
│       │   │   ├── ChartletTobmp.vb
│       │   │   ├── Class1.vb
│       │   │   ├── ClassDiagram1.cd
│       │   │   ├── DotNetPrint.dll
│       │   │   ├── DotNetPrint.pdb
│       │   │   ├── DotNetPrint.xml
│       │   │   ├── Draw.Designer.vb
│       │   │   ├── Draw.resx
│       │   │   ├── Draw.vb
│       │   │   ├── DrawCellTest.designer.vb
│       │   │   ├── DrawCellTest.resx
│       │   │   ├── DrawCellTest.vb
│       │   │   ├── DrawPanelForm.Designer.vb
│       │   │   ├── DrawPanelForm.resx
│       │   │   ├── DrawPanelForm.vb
│       │   │   ├── DrawTextSpace.Designer.vb
│       │   │   ├── DrawTextSpace.resx
│       │   │   ├── DrawTextSpace.vb
│       │   │   ├── DrawTextSpace2.designer.vb
│       │   │   ├── DrawTextSpace2.resx
│       │   │   ├── DrawTextSpace2.vb
│       │   │   ├── EasyReportToVB2008Print.Designer.vb
│       │   │   ├── EasyReportToVB2008Print.resx
│       │   │   ├── EasyReportToVB2008Print.vb
│       │   │   ├── ExportToExcel.designer.vb
│       │   │   ├── ExportToExcel.resx
│       │   │   ├── ExportToExcel.vb
│       │   │   ├── Form1.Designer.vb
│       │   │   ├── Form1.resx
│       │   │   ├── Form1.vb
│       │   │   ├── Form10.designer.vb
│       │   │   ├── Form10.resx
│       │   │   ├── Form10.vb
│       │   │   ├── Form11.designer.vb
│       │   │   ├── Form11.resx
│       │   │   ├── Form11.vb
│       │   │   ├── Form12.designer.vb
│       │   │   ├── Form12.resx
│       │   │   ├── Form12.vb
│       │   │   ├── Form13.designer.vb
│       │   │   ├── Form13.resx
│       │   │   ├── Form13.vb
│       │   │   ├── Form14.designer.vb
│       │   │   ├── Form14.resx
│       │   │   ├── Form14.vb
│       │   │   ├── Form15.designer.vb
│       │   │   ├── Form15.resx
│       │   │   ├── Form15.vb
│       │   │   ├── Form16.Designer.vb
│       │   │   ├── Form16.resx
│       │   │   ├── Form16.vb
│       │   │   ├── Form17.designer.vb
│       │   │   ├── Form17.resx
│       │   │   ├── Form17.vb
│       │   │   ├── Form18.Designer.vb
│       │   │   ├── Form18.resx
│       │   │   ├── Form18.vb
│       │   │   ├── Form19.designer.vb
│       │   │   ├── Form19.resx
│       │   │   ├── Form19.vb
│       │   │   ├── Form2.designer.vb
│       │   │   ├── Form2.resx
│       │   │   ├── Form2.vb
│       │   │   ├── Form20.Designer.vb
│       │   │   ├── Form20.resx
│       │   │   ├── Form20.vb
│       │   │   ├── Form21.designer.vb
│       │   │   ├── Form21.resx
│       │   │   ├── Form21.vb
│       │   │   ├── Form22.Designer.vb
│       │   │   ├── Form22.resx
│       │   │   ├── Form22.vb
│       │   │   ├── Form23.Designer.vb
│       │   │   ├── Form23.resx
│       │   │   ├── Form23.vb
│       │   │   ├── Form24.Designer.vb
│       │   │   ├── Form24.resx
│       │   │   ├── Form24.vb
│       │   │   ├── Form25.Designer.vb
│       │   │   ├── Form25.resx
│       │   │   ├── Form25.vb
│       │   │   ├── Form3.designer.vb
│       │   │   ├── Form3.resx
│       │   │   ├── Form3.vb
│       │   │   ├── Form4.designer.vb
│       │   │   ├── Form4.resx
│       │   │   ├── Form4.vb
│       │   │   ├── Form5.Designer.vb
│       │   │   ├── Form5.resx
│       │   │   ├── Form5.vb
│       │   │   ├── Form6.designer.vb
│       │   │   ├── Form6.resx
│       │   │   ├── Form6.vb
│       │   │   ├── Form7.Designer.vb
│       │   │   ├── Form7.resx
│       │   │   ├── Form7.vb
│       │   │   ├── Form8.Designer.vb
│       │   │   ├── Form8.resx
│       │   │   ├── Form8.vb
│       │   │   ├── Form9.Designer.vb
│       │   │   ├── Form9.resx
│       │   │   ├── Form9.vb
│       │   │   ├── FormMul.Designer.vb
│       │   │   ├── FormMul.resx
│       │   │   ├── FormMul.vb
│       │   │   ├── FormQR.Designer.vb
│       │   │   ├── FormQR.resx
│       │   │   ├── FormQR.vb
│       │   │   ├── Formreport.Designer.vb
│       │   │   ├── Formreport.resx
│       │   │   ├── Formreport.vb
│       │   │   ├── Microsoft.Office.Interop.Excel.dll
│       │   │   ├── Microsoft.Vbe.Interop.dll
│       │   │   ├── My Project
│       │   │   │   ├── Application.Designer.vb
│       │   │   │   ├── Application.myapp
│       │   │   │   ├── AssemblyInfo.vb
│       │   │   │   ├── Resources.Designer.vb
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.vb
│       │   │   │   ├── Settings.settings
│       │   │   │   └── app.manifest
│       │   │   ├── Northwind.mdb
│       │   │   ├── NorthwindDataSet.Designer.vb
│       │   │   ├── NorthwindDataSet.vb
│       │   │   ├── NorthwindDataSet.xsc
│       │   │   ├── NorthwindDataSet.xsd
│       │   │   ├── NorthwindDataSet.xss
│       │   │   ├── Report1.rdlc
│       │   │   ├── Resources
│       │   │   │   ├── 43.bmp
│       │   │   │   ├── 53.bmp
│       │   │   │   ├── 55.bmp
│       │   │   │   ├── Image1.jpg
│       │   │   │   ├── KEY.GIF
│       │   │   │   ├── Thumbs.db
│       │   │   │   ├── ico.jpg
│       │   │   │   └── tilocalCATTWDPO.jpg
│       │   │   ├── RichTextBoxPrint.Designer.vb
│       │   │   ├── RichTextBoxPrint.resx
│       │   │   ├── RichTextBoxPrint.vb
│       │   │   ├── Thumbs.db
│       │   │   ├── app.config
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── Northwind.mdb
│       │   │   │       ├── definesrcipt.txt
│       │   │   │       ├── rtf1.rtf
│       │   │   │       ├── rtf2.rtf
│       │   │   │       ├── 多栏报表.mb
│       │   │   │       ├── 支票套打.mb
│       │   │   │       ├── 普通报表.mb
│       │   │   │       ├── 分组报表1.mb
│       │   │   │       ├── 分组报表2.mb
│       │   │   │       ├── 普通报表2.mb
│       │   │   │       ├── 计算公式报表.mb
│       │   │   │       ├── 计算字段报表.mb
│       │   │   │       ├── 第一个打印方案.fa
│       │   │   │       ├── 第三个打印方案.fa
│       │   │   │       ├── 第二个打印方案.fa
│       │   │   │       └── 图片及复选框报表.mb
│       │   │   ├── checkprint.Designer.vb
│       │   │   ├── checkprint.resx
│       │   │   ├── checkprint.vb
│       │   │   ├── definesrcipt.txt
│       │   │   ├── doubleline.Designer.vb
│       │   │   ├── doubleline.resx
│       │   │   ├── doubleline.vb
│       │   │   ├── drawexpression.Designer.vb
│       │   │   ├── drawexpression.resx
│       │   │   ├── drawexpression.vb
│       │   │   ├── groupprint.Designer.vb
│       │   │   ├── groupprint.resx
│       │   │   ├── groupprint.vb
│       │   │   ├── gz.Designer.vb
│       │   │   ├── gz.resx
│       │   │   ├── gz.vb
│       │   │   ├── mymain.Designer.vb
│       │   │   ├── mymain.resx
│       │   │   ├── mymain.vb
│       │   │   ├── office.dll
│       │   │   ├── printdgvselect.designer.vb
│       │   │   ├── printdgvselect.resx
│       │   │   ├── printdgvselect.vb
│       │   │   ├── printpapersize.designer.vb
│       │   │   ├── printpapersize.resx
│       │   │   ├── printpapersize.vb
│       │   │   ├── printzdx.Designer.vb
│       │   │   ├── printzdx.resx
│       │   │   ├── printzdx.vb
│       │   │   ├── rotate.Designer.vb
│       │   │   ├── rotate.resx
│       │   │   ├── rotate.vb
│       │   │   ├── test.sln
│       │   │   ├── test.suo
│       │   │   ├── test.vbproj
│       │   │   ├── test.vbproj.user
│       │   │   ├── zydy.designer.vb
│       │   │   ├── zydy.resx
│       │   │   ├── zydy.vb
│       │   │   └── 打印.ico
│       │   ├── 手动分页测试(C版)
│       │   │   └── 手动分页测试(C版)
│       │   │       ├── 手动分页测试(C版)
│       │   │       │   ├── Form1.Designer.cs
│       │   │       │   ├── Form1.cs
│       │   │       │   ├── Form1.resx
│       │   │       │   ├── Program.cs
│       │   │       │   ├── Properties
│       │   │       │   │   ├── AssemblyInfo.cs
│       │   │       │   │   ├── Resources.Designer.cs
│       │   │       │   │   ├── Resources.resx
│       │   │       │   │   ├── Settings.Designer.cs
│       │   │       │   │   └── Settings.settings
│       │   │       │   ├── bin
│       │   │       │   │   ├── Debug
│       │   │       │   │   └── Release
│       │   │       │   ├── 手动分页测试(C版).csproj
│       │   │       │   └── 手动分页测试(C版).csproj.user
│       │   │       ├── 手动分页测试(C版).sln
│       │   │       └── 手动分页测试(C版).suo
│       │   ├── 手动分页测试(VB版)
│       │   │   ├── 手动分页测试
│       │   │   │   ├── Form1.Designer.vb
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Form1.vb
│       │   │   │   ├── My Project
│       │   │   │   │   ├── Application.Designer.vb
│       │   │   │   │   ├── Application.myapp
│       │   │   │   │   ├── AssemblyInfo.vb
│       │   │   │   │   ├── Resources.Designer.vb
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.vb
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   ├── 手动分页测试.vbproj
│       │   │   │   └── 手动分页测试.vbproj.user
│       │   │   ├── 手动分页测试.sln
│       │   │   └── 手动分页测试.suo
│       │   ├── 面试通知单测试(C#)
│       │   │   ├── 面试通知单测试
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   ├── 面试通知单测试.csproj
│       │   │   │   └── 面试通知单测试.csproj.user
│       │   │   ├── 面试通知单测试.sln
│       │   │   └── 面试通知单测试.suo
│       │   └── 面试成绩汇总表打印
│       │       ├── 面试成绩汇总表打印
│       │       │   ├── Form1.Designer.cs
│       │       │   ├── Form1.cs
│       │       │   ├── Form1.resx
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   ├── AssemblyInfo.cs
│       │       │   │   ├── Resources.Designer.cs
│       │       │   │   ├── Resources.resx
│       │       │   │   ├── Settings.Designer.cs
│       │       │   │   └── Settings.settings
│       │       │   ├── bin
│       │       │   │   ├── Debug
│       │       │   │   └── Release
│       │       │   ├── 面试成绩汇总表打印.csproj
│       │       │   └── 面试成绩汇总表打印.csproj.user
│       │       ├── 面试成绩汇总表打印.sln
│       │       └── 面试成绩汇总表打印.suo
│       ├── 第一个打印方案.fa
│       ├── 第三个打印方案.fa
│       ├── 第二个打印方案.fa
│       ├── 打印控件演示实例.exe
│       └── 图片及复选框报表.mb
└── 免费DataGridView打印及.NET轻松打印控件5.5版(VB打印,C#打印)_DataGridView打印控件5.5版.rar

77 directories, 449 files


实例下载地址

免费DataGridView打印及.NET轻松打印控件5.5版(VB打印,C#打印)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警