摘要: SAP webservice 阅读全文
posted @ 2020-06-09 17:23 RunningSoybean 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Python版见https://blog.csdn.net/qq_40870689/article/details/88757081, 思路: 1,RGB转HSV,图中只保留红色,https://blog.csdn.net/coldwindha/article/details/82080176 2, 阅读全文
posted @ 2019-12-04 10:20 RunningSoybean 阅读(2316) 评论(0) 推荐(0) 编辑
摘要: 开发了一个程序,将数据库中的数据在每次修改前先从公共盘恢复到本地SQL中,修改完再备份到公共盘,实现多台电脑共享数据。在恢复是一直存在别的程序在占用数据库,使用了简单粗暴的方法,直接KILL掉指定数据库的所有连接 ///杀死原来所有的数据库连接进程SqlConnection conn = new S 阅读全文
posted @ 2019-11-19 15:59 RunningSoybean 阅读(681) 评论(0) 推荐(0) 编辑
摘要: 问题1,第二次调用子窗体时存在出现无法访问已释放对象的异常, 原因,子窗体并没有关闭,而是隐藏挂起了,在窗体closing事件(不是closed)中添加 private void Registry_FormClosing(object sender, FormClosingEventArgs e) 阅读全文
posted @ 2019-10-21 16:20 RunningSoybean 阅读(2871) 评论(0) 推荐(0) 编辑
摘要: 参数传递顺序是,先打开主窗体,运行产生参数,然后加载子窗体,在子窗体textbox控件中显示主窗体中的参数。 需要实现在点击主窗体按键,将主窗体中的参数返回值加载进子窗体的名称,物料号,型号中。 方法: 1,在主窗体中定义一个全局静态变量,用于存放主窗体中的参数, public static str 阅读全文
posted @ 2019-10-21 16:11 RunningSoybean 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 使用颜色填充就行,Excel中颜色数值对应表 https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/cc296089(v=office.12)?redirectedfrom=MSDN Range 阅读全文
posted @ 2019-10-11 13:49 RunningSoybean 阅读(488) 评论(0) 推荐(0) 编辑
摘要: C# 阅读全文
posted @ 2019-09-19 15:13 RunningSoybean 阅读(2512) 评论(0) 推荐(0) 编辑
摘要: 做开发没有对电脑的绝对管理员权限的问题,会出现很多意外,调试OPC是总是连接状态有时莫明返回3,提示 not configuration,问题在于: 没有以管理员权限运行OPCConfig.exe,导致配置的PLC参数CODESYS.ini没有写到CODESYS2.3安装目录的codesys2.3文 阅读全文
posted @ 2019-09-06 14:01 RunningSoybean 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 参考:《OPC统一架构》中文版 0 Bad1 Bad, Low Limited2 Bad, High Limited3 Bad, Constant4 Bad, Configuration Error5 Bad, Configuration Error, Low Limited6 Bad, Confi 阅读全文
posted @ 2019-09-03 14:08 RunningSoybean 阅读(2560) 评论(0) 推荐(0) 编辑