摘要: 方案(一) 在FRX模板中拖一个Picture控件,对象为Picture1 在VS项目的打印(预览)部分向Picture1推送一个图片,代码如下 ((PictureObject)report.FindObject("Picture1")).ImageLocation = @"pic\13032319 阅读全文
posted @ 2021-06-04 15:08 techNote 阅读(815) 评论(0) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { Report report = new Report(); report.Load("2.frx"); //这样写 report.RegisterData(CommonCode.GetData 阅读全文
posted @ 2021-06-04 11:25 techNote 阅读(708) 评论(0) 推荐(1) 编辑
摘要: BitmapSource和WriteableBitmap一些类听说是用 using System.Windows.Media.Imaging;可是我发现VS中没有什么System.Windows.Media.Imaging之类的框架,这就苦逼了,在网上也找不到,无意间发现原来引用不叫System.W 阅读全文
posted @ 2021-06-03 14:53 techNote 阅读(210) 评论(0) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { Report report = new Report(); report.Load("1.frx"); report.RegisterData(CommonCode.GetDataSet(). 阅读全文
posted @ 2021-06-03 06:35 techNote 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 关于水晶报表推(送数据到报表)模式在C# Winform中的应用注意事项: (1)要修改app.config为 <?xml version="1.0"?><configuration><startup useLegacyV2RuntimeActivationPolicy="true">//这行use 阅读全文
posted @ 2021-06-01 10:43 techNote 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 重载:overLoad重写:overRide重载指的是方法的重载:就是在一个类中,注意是一个类中,多个名字相同参数不同的方法就构成了重载而重写是指父类中的虚的抽象的方法需要在继承它的子类中被重写而得名 阅读全文
posted @ 2021-05-30 11:31 techNote 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-05-30 11:28 techNote 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 选中控件【DataGridView】后,点击右上角的三角,把【启用添加】的复选框去掉勾选即可。 阅读全文
posted @ 2021-05-27 14:12 techNote 阅读(482) 评论(0) 推荐(0) 编辑
摘要: (1)在VS2010环境下添加新项 水晶报表 建立水晶报表 过程:连接数据库按向导设计报表 (2)建Form1存放打印和打印预览按钮 打印预览按钮代码: private void button2_Click(object sender, EventArgs e) { Form2 f2 = new F 阅读全文
posted @ 2021-05-27 09:19 techNote 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 一、连接打印机的主机设置 首先开启相关的服务,一下这些服务需要开启,手动改为自动。 1.Server 2.Workstation 3.Computer Browser 4.DHCP Client 5.Remote Procedure Call 6.Remote Procedure Call (RPC 阅读全文
posted @ 2021-05-13 15:47 techNote 阅读(2232) 评论(0) 推荐(0) 编辑