摘要: 紧急切断阀带有近程和远程控制阀门 阅读全文
posted @ 2024-01-15 17:17 枫卍 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Springer Texts in Statistics Time Series Analysis With Applications in R Second Edition 阅读全文
posted @ 2022-02-05 19:18 枫卍 阅读(25) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 以毫米为单位的显示宽度 /// <summary> const int HORZSIZE = 4; /// <summary> /// 以像素为单位的显示宽度 0~65535 /// <summary> const int HORZRES = 8; const i 阅读全文
posted @ 2020-12-14 09:40 枫卍 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1.首先,拖放一个GridControl控件,选择其Run Designer --> In-place Editor Repository --> Add 增加一个ButtonEdit类型的按钮 2.在ButonEdit 的属性 Behavior 下找到 Buttons 属性,选中右边的 ... 点 阅读全文
posted @ 2019-09-30 17:13 枫卍 阅读(746) 评论(0) 推荐(0) 编辑
摘要: public IList<Student> IStudent = new List<Student>(); public BindingList<Student> BStudent = new BindingList<Student>(); /// <summary> /// 加载数据返回IList 阅读全文
posted @ 2019-09-29 15:31 枫卍 阅读(266) 评论(0) 推荐(0) 编辑
摘要: gridView1.IndicatorWidth=30; //设置行号宽度 //对gridView1的CustomDrawRowIndicator事件进行操作 进行行号显示 private static void GridView1_CustomDrawRowIndicator(object sen 阅读全文
posted @ 2019-09-10 09:13 枫卍 阅读(274) 评论(0) 推荐(0) 编辑
摘要: public static void SetFilter(GridView gdv) { gdv.OptionsView.ShowAutoFilterRow = true; //设置筛选行 foreach (GridColumn item in gdv.Columns) { item.Options 阅读全文
posted @ 2019-09-10 09:03 枫卍 阅读(2003) 评论(0) 推荐(0) 编辑
摘要: Type type=Assembly.Load("ModuleName").GetType("AssemblyName"); //获取程序集实例中具有指定名称的 System.Type 对象 MethodInfo method=type.GetMethod("FunctionName",new ty 阅读全文
posted @ 2019-09-02 11:29 枫卍 阅读(173) 评论(0) 推荐(0) 编辑
摘要: select dateadd(dd,-day(getdate()) + 1,getdate()) '当月起始时间' //查询当月起始时间 select dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate())+1, 0)) '当月结束时间' //查询当月结束 阅读全文
posted @ 2019-06-24 10:58 枫卍 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: 1、首先去Microsoft官网下载对应的安装程序,下载地址:https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2、运行安装程序进行SQL Server安装程序的安装,注意:在安装程序安装完成时的界面有一个SQL Serv 阅读全文
posted @ 2018-09-26 13:45 枫卍 阅读(535) 评论(0) 推荐(0) 编辑