会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
不积跬步无以至千里
新随笔
管理
06 2021 档案
线程控件异步赋值
摘要://gcInterface为控件名称 if (gcInterface.InvokeRequired) { gcInterface.BeginInvoke((MethodInvoker)delegate { dtConfig.Rows[index]["count"] = count; dtConfig
阅读全文
posted @
2021-06-27 16:23
Hello有点抽象
阅读(69)
评论(0)
推荐(0)
窗体关闭时最小托盘化
摘要:private void IEClient_FormClosing(object sender, FormClosingEventArgs e) { if (e.CloseReason == CloseReason.UserClosing) { e.Cancel = true; this.Hide(
阅读全文
posted @
2021-06-27 16:00
Hello有点抽象
阅读(41)
评论(0)
推荐(0)
C# 根据实体数据集合转成子类属性实体集合
摘要:/// <summary> /// 拷贝赋值子类 /// </summary> /// <param name="list"></param> /// <returns></returns> private static List<JHCDR_LAB_REPORT_Vo> AutoCopy(List
阅读全文
posted @
2021-06-21 14:49
Hello有点抽象
阅读(203)
评论(0)
推荐(0)
Oracle导出导入
摘要:--导出数据库 --exp JHICU/JHICU@192.168.0.93/ORCL file=D:\JHICU.dmp full=y log=D:\log.txt exp 登录名/登录密码@链接IP/实例 file=D:\JHICU.dmp full=y log=D:\log.txt --导入数
阅读全文
posted @
2021-06-18 19:38
Hello有点抽象
阅读(69)
评论(0)
推荐(0)
Oracle数据库导入(数据泵导)
摘要:(准备工作)首先在需要导入的数据库中以管理员身份执行以下命令: 由于工作原因需要经常在本地环境倒库,所以每次倒库都会根据数据库用途重新创建用户及表空间,方便切换和管理 –1. 创建用户并设置密码 create user (userName) identified by (userPassword);
阅读全文
posted @
2021-06-18 19:33
Hello有点抽象
阅读(987)
评论(0)
推荐(0)
C# 根据WCF 的url动态调用WCF
摘要:#region Wcf服务工厂 public static T CreateWCFServiceByURL<T>(string url) { return CreateWCFServiceByURL<T>(url, "basichttpbinding"); } #endregion public s
阅读全文
posted @
2021-06-15 09:25
Hello有点抽象
阅读(317)
评论(0)
推荐(0)
winform嵌套浏览器
摘要:private void Form2_Load(object sender, EventArgs e) { //webBrowser1.IsWebBrowserContextMenuEnabled = true; //webBrowser1.AllowNavigation = true; //web
阅读全文
posted @
2021-06-10 18:21
Hello有点抽象
阅读(367)
评论(0)
推荐(0)
动态调用WebService(封装)
摘要:1.添加引用System.Web.Services 2、封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/8 16:22:38 * Update: * *********
阅读全文
posted @
2021-06-08 16:33
Hello有点抽象
阅读(279)
评论(0)
推荐(0)
DevExpress GridControl控件绑定ID显示别的内容
摘要:/// <summary> /// 未安排列表赋值 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void GVBeforeSchedule_CustomUnboundCol
阅读全文
posted @
2021-06-02 16:15
Hello有点抽象
阅读(180)
评论(0)
推荐(0)
遍历实体类并给实体类赋值
摘要://获取数据 string sql =$@" select t.* from PushPlatformDatas t.id={caseid} "; using (OracleDataReader drs = OracleHelper.ExecuteReader(sql, System.Data.Co
阅读全文
posted @
2021-06-01 17:17
Hello有点抽象
阅读(447)
评论(0)
推荐(0)
根据地址调用WebServices
摘要:1.添加引用 2.封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/1 15:36:38 * Update: * ****************************
阅读全文
posted @
2021-06-01 16:05
Hello有点抽象
阅读(140)
评论(0)
推荐(0)