上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: using System; using System.Text; using System.IO; namespace Common.Utility { /// /// 文件操作夹 /// public static class DirFile { region 检测指定目录是否存在 /// /// 阅读全文
posted @ 2020-04-13 23:15 zhujie- 阅读(208) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text; using System.Web; using System.IO; namespace Common.Utility { public class FileOperate { region 写文件 protected void Wr 阅读全文
posted @ 2020-04-13 23:13 zhujie- 阅读(216) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace MyStringHelper { /// /// 字符串操作类 /// 阅读全文
posted @ 2020-04-13 00:07 zhujie- 阅读(154) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyPinYin { /// /// 汉字拼音转换类 /// public static class Pin 阅读全文
posted @ 2020-04-13 00:00 zhujie- 阅读(493) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text; using System.Text.RegularExpressions; namespace Utilities { /// /// 共用工具类 /// public static class Tools { region 得到字符 阅读全文
posted @ 2020-04-12 23:57 zhujie- 阅读(304) 评论(0) 推荐(0) 编辑
摘要: /// /// Excel一次性大量数据快速写入 /// /// 工作薄路径 /// 要写入的工作表名字 private void WriteExcel(string path,string sheetName) { Microsoft.Office.Interop.Excel.Applicatio 阅读全文
posted @ 2020-04-07 23:41 zhujie- 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: Sub jljl() arr = Range("a2:e22") '内存表 For r = 2 To 100 Step 2 '取一个大点的数假如要放100行 For y = 1 To 8 'PL号要分多少列 m = m + 1 '循环数据表的每一行 Cells(r, "g") = arr(m, 1) 阅读全文
posted @ 2020-03-01 00:55 zhujie- 阅读(173) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Reporting.WinForms; using System; using System.Data; using System.Windows.Forms; namespace DataGridView分页 { public partial class Form1 阅读全文
posted @ 2020-02-25 18:47 zhujie- 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 可以通过单击单元格,然后使用属性面板修改相应的属性来更改字体,背景色等。要设置整个行的样式,请单击行选择器以选择该行,然后使用属性面板修改其属性。 三、条件格式 可以使用表达式而不是常量值来设置大多数属性。表达式是用VB.NET语法编写的(实际上是使用VB编译器进行编译的。)例如,可以通过设置相应的 阅读全文
posted @ 2020-02-25 07:50 zhujie- 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 1.首先需要定义新的窗体: private Form anotherForm; //声明新窗体 2.在需要跳转的动作下面写上跳转事件: private void Button1_Click(object sender, EventArgs e)//实现隐藏旧窗体,跳转新窗体 { anotherFor 阅读全文
posted @ 2020-02-25 00:47 zhujie- 阅读(1078) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页