C#
happymagic
这个作者很懒,什么都没留下…
展开
-
如何在报告中显示在数据库中存储为Base64字符串的图像
我有一个带有XRPictureBox组件的XtraReport。一个objectDataSource被馈送到包含数据的报表中。其中一个objectDataSource项名为“ Signature”,其值是从Canvas组件派生的……它是数据URL格式的,base64编码的(可能是PNG)位图数据,如下所示:“ data:image / png; base64, i1234lkj123; k4; l...原创 2020-03-21 17:40:15 · 740 阅读 · 0 评论 -
C#操作Excel文件三种方式及连接字符串
转自:http://www.cnblogs.com/JacobHuang/p/5663926.html.Net平台上对Excel进行操作主要有两种方式。第一种,把Excel文件看成一个数据库,通过OleDb的方式进行读取与操作;第二种,调用Excel的COM组件。两种方式各有特点。注意一些简单的问题1.excel文件只能存储65535行数据,如果你的数据大于65535行,那么就需要将exc...转载 2020-03-04 10:17:04 · 4027 阅读 · 1 评论 -
c#调用按钮点击事件
转自:https://blog.csdn.net/u011423435/article/details/21627937关于c#窗体程序的按钮点击事件,经过这几天的查询资料,现在总结如下:1、在一个按钮事件中调用另一个按钮(button1)的点击事件,可以直接如下:button1.PerformClick()也称之为 以编程方式调用按钮的click事件2、在加载事件...转载 2020-03-03 22:24:07 · 8693 阅读 · 0 评论 -
c# winfrom 窗口控件初始化
// // label1 // this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.Font = new System.Drawing.Font("Bookman Old Style",...原创 2020-03-03 22:23:06 · 1802 阅读 · 0 评论 -
C#人民币金额大写转换
转自:https://blog.csdn.net/commandbaby/article/details/50083587最终原文:https://www.cnblogs.com/Jeremy2001/p/7788469.html高能在最后!。。。人民币金额大小写转换,三行代码//完善了一下查询到的方法,支持小数,保留2位小数 public string NumGetStr...转载 2019-12-02 14:16:13 · 387 阅读 · 0 评论 -
float,double,decimal的区别于误解
转自:https://blog.csdn.net/m1654399928/article/details/54729409在精确计算中使用浮点数是非常危险的,尽管C#在浮点数运算时采取了很多措施使得浮点数运算的结果看起来是非常正常的。但实际上如果不清楚浮点数的特性而贸然使用的话,将造成非常严重的隐患。考虑下面的语句:doubledd=...转载 2020-02-26 19:58:33 · 422 阅读 · 0 评论 -
C# 调用 Outlook发送邮件实例
https://www.cnblogs.com/allen0118/p/4622798.html添加引用:Microsoft.Office.Interop.Outlookusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Mail;...转载 2019-12-10 21:21:19 · 1292 阅读 · 0 评论 -
Banded Grid Views
https://docs.devexpress.com/WindowsForms/114637/controls-and-libraries/data-grid/views/banded-grid-viewsBanded Grid ViewsJun 19, 2019 5 min to read Banded Grid View (BandedGridVi...原创 2019-12-06 20:21:00 · 691 阅读 · 0 评论 -
Data Grid
https://docs.devexpress.com/WindowsForms/3455/controls-and-libraries/data-gridData GridAug 27, 2019 12 min to readTheWinForms Data Grid(GridControl) provides rich capabilities for displaying, ...原创 2019-12-06 20:15:25 · 1816 阅读 · 0 评论 -
Printing Overview
https://docs.devexpress.com/WindowsForms/990/controls-and-libraries/data-grid/export-and-printing/printing-overviewPrinting OverviewNov 16, 2018 5 min to readThe Grid Control provides methods fo...原创 2019-12-06 20:12:33 · 319 阅读 · 0 评论 -
Export to XLS and XLSX Formats
https://docs.devexpress.com/WindowsForms/17733/controls-and-libraries/data-grid/export-and-printing/export-to-xls-and-xlsx-formatsExport to XLS and XLSX FormatsJun 20, 2019 10 min to readThe Gri...原创 2019-12-06 20:07:05 · 1338 阅读 · 0 评论 -
Examples: Data Binding
https://docs.devexpress.com/WindowsForms/3002/controls-and-libraries/data-grid/examples/data-binding/examples-data-bindingExamples: Data BindingApr 01, 2018#ExamplesHow to: Bind GridControl to ...原创 2019-12-06 20:04:57 · 158 阅读 · 0 评论 -
How to: Bind a Control to Data Created at Runtime
https://docs.devexpress.com/WindowsForms/2389/common-features/data-binding/how-to-bind-a-control-to-data-created-at-runtimeThis example binds a GridControl to a collection of custom Record objects a...原创 2019-12-06 20:00:23 · 285 阅读 · 0 评论 -
How to: Bind a GridControl to a Database in Server Mode
https://docs.devexpress.com/WindowsForms/3265/controls-and-libraries/data-grid/examples/data-binding/how-to-bind-a-gridcontrol-to-a-database-in-server-modeThis topic provides step-by-step instructio...原创 2019-12-06 19:58:52 · 375 阅读 · 0 评论 -
如何:引发事件和使用事件
https://docs.microsoft.com/zh-cn/dotnet/standard/events/how-to-raise-and-consume-events本主题中的示例演示如何处理事件。它们包含EventHandler、EventHandler<TEventArgs>委托和自定义委托的示例,用于说明包含数据和不包含数据的事件。这些示例使用事件一文中介绍...原创 2019-12-06 17:02:48 · 266 阅读 · 0 评论 -
IReportViewerMessages Interface接口
https://docs.microsoft.com/zh-cn/previous-versions/ms255036(v=vs.140)发布时间: 2016年7月允许应用程序提供自定义的用户界面消息。命名空间:Microsoft.Reporting.WinForms程序集:Microsoft.ReportViewer.WinForms(Microsoft.ReportVie...原创 2019-12-05 22:38:47 · 290 阅读 · 0 评论 -
使用报表查看器控件集成 Reporting Services - 入门reportviewer
https://docs.microsoft.com/zh-cn/sql/reporting-services/application-integration/integrating-reporting-services-using-reportviewer-controls-get-started?view=sql-server-2017报表查看器控件可用来将 Reporting Servi...原创 2019-12-05 22:31:38 · 1061 阅读 · 2 评论 -
OpenFileDialog 类
https://docs.microsoft.com/zh-cn/dotnet/api/system.windows.forms.openfiledialog?redirectedfrom=MSDN&view=netframework-4.8System.Windows.Forms程序集:System.Windows.Forms.dll显示一个标准对话框,提示用户打开文件。...原创 2019-12-05 21:16:04 · 558 阅读 · 0 评论 -
Generating PDF from a DataGridView in Winforms
https://stackoverflow.com/questions/13587520/generating-pdf-from-a-datagridview-in-winforms/22197268#22197268I'm attempting to create a PDF from a DataGridView populated from a database.I have jus...原创 2019-12-05 21:14:26 · 136 阅读 · 0 评论 -
如何:使用 SaveFileDialog 组件保存文件
https://docs.microsoft.com/zh-cn/previous-versions/visualstudio/visual-studio-2010/sfezx97z(v%3dvs.100)用户可以使用SaveFileDialog组件浏览文件系统并选择要保存的文件。 该对话框返回用户在对话框中选定的文件的路径和名称。 不过,您必须编写代码才能真正地将文件写入磁盘。使用 ...原创 2019-12-05 21:08:52 · 2234 阅读 · 0 评论 -
C# SaveFileDialog 、OpenFileDialog 的用法
文件操作中SaveFileDialog的用法c#获取要保存文件的对话框,用SaveFileDialog类。具体用法很简单分享一下吧,对于初学者可能有用//可能要获取的路径名string localFilePath = "", fileNameExt= "", newFileName= "", FilePath= "";SaveFileDialog saveFileDialog = n...转载 2019-12-05 20:46:31 · 4673 阅读 · 0 评论 -
winform控件statusStrip1上的toolStripStatusLabel1如何靠右对齐
以下代码为正确实现。this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; this.toolStripStatusLabel1.Alignment = System.Windows.Forms.ToolStripIte...原创 2019-12-04 22:41:29 · 4232 阅读 · 0 评论 -
Winforms ReportViewer and Open After Export(Winforms ReportViewer并在导出后打开)
转自:https://stackoverflow.com/questions/7649699/winforms-reportviewer-and-open-after-exportWhen using the default export buttons within the ReportViewer, is there a way to simply prompt the user to o...转载 2019-12-04 20:35:00 · 651 阅读 · 0 评论 -
Linq or Sql 取树末级节点
转自:http://www.tnblog.net/cz/article/details/2718List<Entity>list=newList<Entity>{newEntity(){Id=1,Name="根",Pid=0},newEntity(){Id=2,...转载 2019-12-03 16:01:36 · 333 阅读 · 0 评论 -
Visual Studio小技巧
转自:http://www.tnblog.net/cz/article/details/2316一.快捷键:按住Ctrl点击 选中当前这个词组,或者结合删除键,删除一整个词Ctrl+M+O:折叠当前窗口所有代码(注释,方法)Ctrl+M+L:展开折叠Ctrl+E+D:缩进 对齐当前窗口的所有代码Ctrl+E+C:注释选中行Ctrl+E+U:取消注释选中行Ctrl+-:跳回...转载 2019-12-03 15:57:17 · 324 阅读 · 0 评论 -
Get Started With Data Grid and Views
https://docs.devexpress.com/WindowsForms/113894/controls-and-libraries/data-grid/getting-started-with-data-grid-and-viewsData GridAug 27, 2019 12 min to readTheWinForms Data Grid(GridControl) ...原创 2019-12-03 15:10:59 · 252 阅读 · 0 评论 -
C#关闭进程的2种方法
转自:https://www.cnblogs.com/sqlfeng/p/6161156.html private void KillProcess(string processName) { System.Diagnostics.Process myproc = new System.Diagnostics.Process();...转载 2019-11-28 22:13:39 · 3554 阅读 · 0 评论 -
Use Report Parameters
https://docs.devexpress.com/XtraReports/4812/detailed-guide-to-devexpress-reporting/shape-report-data/use-report-parametersThe topics in this section describe how to use parameters in a report:...原创 2019-11-28 10:56:23 · 354 阅读 · 0 评论 -
How to: Show a Progress Bar during Document Generation
https://docs.devexpress.com/WindowsForms/2425/controls-and-libraries/printing-exporting/examples/print-preview/how-to-show-a-progress-bar-during-document-generationusing System.Windows.Forms;using...原创 2019-11-28 10:39:53 · 131 阅读 · 0 评论 -
How to pass parameters to XtraReport in code
https://www.devexpress.com/Support/Center/Question/Details/T254029/how-to-pass-parameters-to-xtrareport-in-codeI have a store procedure and a webform(aspx.net) withASPxDocumentViewer1how i can sen...原创 2019-11-26 22:39:32 · 534 阅读 · 0 评论 -
DevExpress之XtraReport 学习笔记
转自:https://www.cnblogs.com/Happly/articles/2541453.htmlXtraReport一、基本概念:XtraReports 中的每个报表都由 XtraRepot 类的一个实例表示,或者由该类的子类来表示(这种情况更常见)。 因此,每个报表都作为带区的容器使用,而每个带区中都包含报表控件。XtraReports 中的每个报表都可以被绑定到数据,...转载 2019-11-26 22:36:40 · 1328 阅读 · 0 评论 -
.net C#中页面之间传值传参的六种方法
1.QueryString是一种非常简单的传值方式,他可以将传送的值显示在浏览器的地址栏中。如果是传递一个或多个安全性要求不高或是结构简单的数值时,可以使用这个方法。但是对于传递数组或对象的话,就不能用这个方法了。下面是一个例子:private void Button1_Click(object sender, System.EventArgs e) { string s_u...转载 2019-11-22 17:53:43 · 285 阅读 · 0 评论 -
RDLC(Reportview)报表直接打印,支持所有浏览器,客户可在linux下浏览使用
转自:https://www.cnblogs.com/bfyx/p/3279385.html最近在做一个打印清单的,但是rdlc报表自带的工具栏中的打印按钮只有在ie内核下的浏览器才可以使用(其他的就会 隐藏),这导致了使用火狐和谷歌浏览器还有使用linux系统的客户打印成了问题,于是就自己百度搜,谷歌搜,然后就解决了,下面放上源码打印类 PrintHelp(我需要两个table座位数据源...转载 2019-11-22 17:47:48 · 798 阅读 · 0 评论 -
RDLC报表金额数字转大写
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/shanshan2099/article/details/902692291.在报表空白处先一点,右键选“报表属性”,在弹出的小窗口上,切换到“代码”标签页。在文本框内输入函数,我这里输入了一个CNMoney函数。注意:(1)嵌入...转载 2019-11-21 22:52:47 · 592 阅读 · 0 评论 -
.net rdlc 自定义函数"把数字转换为大写中文"
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/LOW584710047/article/details/35261193在.net平台的rdlc中,可以使用自定义方法来扩充报表功能,比如常见的 ”把数字转换为大写中文“网上找了很久发现这篇不错 原文后来细心测试发现存在一个b...转载 2019-11-21 22:37:06 · 459 阅读 · 0 评论 -
RDLC - 后台代码直接导出Excel/PDF/Word格式
转自:https://www.cnblogs.com/zhangzhi19861216/p/3677896.html最近做报表功能,用到了.net的报表组件rdlc。其中有个功能就是后台代码直接输出Excel/PDF/Word格式的文件,网上看了些资源,做个总结:参考地址:https://forums.asp.net/t/1556522.aspx?RDLC+Export+direct...转载 2019-11-21 21:23:16 · 1796 阅读 · 0 评论 -
C#中String类的几个方法(IndexOf、LastIndexOf、Substring)
String.IndexOfString.IndexOf 方法 (Char, Int32, Int32)报告指定字符在此实例中的第一个匹配项的索引。搜索从指定字符位置开始,并检查指定数量的字符位置。String.IndexOf(value, startIndex, count)参数value:要查找的 Unicode 字符。 startIndex:搜索起始位置。 c转载 2013-04-24 00:02:22 · 25309 阅读 · 0 评论 -
asp.net获取当前网址url的各种属性(文件名、参数、域名 等)的代码
用 asp.net获取当前网页地址的一些信息。设当前页完整地址是:http://www.jb51.net/aaa/bbb.aspx?id=5&name=kelli "http://"是协议名 "www.jb51.net"是域名 "aaa"是站点名 "bbb.aspx"是页面名(文件名) "id=5&name=kelli"是参数 【1】获取 完整url (协议名+域名+站转载 2013-04-23 23:43:00 · 3055 阅读 · 0 评论 -
可以切换数据库的SqlHelper
完整代码:/Files/greatverve/MyFiles.rar一个项目我一般只用一个数据库,现在有需求,需要使用多个数据库,临时改了一下,不知道好不好,请高手指教,大家使用多数据库的时候是如何切换的。DBHelper.csprivate static string connectionString = "SQLCONNECTIONSTRING";/// ///转载 2013-04-09 17:30:58 · 843 阅读 · 0 评论 -
XMLHelper类 源码(XML文档帮助类,静态方法,实现对XML文档的创建,及节点和属性的增、删、改、查)
由于对XML的操作比较简单,没想过写个工具类。昨天一同事问我有没有,搜了搜,找到一个不错的。----------------------------------------------------------------------------------------- 经过这些日子以来,我根据上篇随笔中读写程序配置文件节点的方法来扩展了其功能,并写了这个XML文档的操作管理帮助类XML转载 2013-04-09 17:33:01 · 1952 阅读 · 0 评论