C#打印GroupBox控件区域

//用到的三个控件分别是 printDocument(区域) 、printPreviewDialog(预览)、(pageSetupDialog设置) protected void Init() { this.printDocument1.OriginAtMargins = true; //启用页边距 …… 阅读全文

C#Winform子报表功能

1.建立两张报表:RepMain.rdlc / RepMainChild.rdlic2.在RepMain.rdlc中添加Subreport控件3.核心代码如下using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Dra …… 阅读全文

C#程序层面的内存分页方法

DataTable gl_dt = new DataTable(); int pagesize = 10; //每页显示的记录条数 int pageindex = 0; //页索引 int recordcount = -1; // 记录行数 int pagecount = 0; //页的数量 protected DataTab …… 阅读全文

C#Winform内存加载多条件查询数据

string gl_roomid = ""; int gl_row_index = -1; DataTable gl_dt = new DataTable(); DataTable dt = new DataTable(); protected void LoadData() { gl_d …… 阅读全文

C#中将数据的格式显示为千分位显示格式

double test = 123456.123; Console.WriteLine(test.ToString("###,###.000"));//结果:123,456.123 …… 阅读全文

C#中两个日期时间之间的时间间隔

string a="2016-04-07 12:12:12"; DateTime time_a = DateTime.Parse(a); string b = "2016-03-06 13:13:13"; DateTime time_b = DateTime.Parse(b); TimeSpan t …… 阅读全文

C#Winform得到指定的文件的位置

一下以判断程序TestManagement中charity_img文件是否存在为例第一种:绝对路径如下:File.Exists(@"C:\Users\XTJSXY\Desktop\Test\TestManagement\TestManagement\charity_img");第二种:相对路径如下:File.Exists(@"../../charity_img/");这里的../../ …… 阅读全文

C#Winform限制TextBox文本框只能输入文本的格式

private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { //IsNumber判断输入的是不是数字 //e.KeyChar != (char)Keys.Back 判断输入的是不是退格 if (!(Char.IsNumber(e.K …… 阅读全文