C#模板框架结合组态王,采用opc进行交互代码,实用。
2022-10-28 09:08:08 12.17MB C#模板开发框架 组态王opc交互代
1
主要描述组态王通过网络OPC时怎么设置DCOM
2022-01-10 15:35:15 676KB 组态王 OPC DCOM
1
组态王与OPC互联
2021-12-14 10:18:01 478KB 组态王 OPC
1
下面这段代码是网上抄来的,相信有人也找到过这段,实际上真正运行的时候就会发现其实是有问题的,我把它修改了下,能正常读写了。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace kingview { public partial class Form1 : Form { /// /// 与组态王建立连接 /// 每次应用程序启动时,必须用该函数与组态王建立连接 /// /// node为节点(IP),如果是本机,其值为空 /// 返回错误码,见附录。 [DllImport("kingvewcliend.dll")] public static extern int StartCliend(string node); /// /// 得到组态王SDK中列出的项目(包括变量及其域)总数 /// [DllImport("kingvewcliend.dll")] public static extern int ReadItemNo(); /// /// 得到某个项目的名称 /// 将返回组态王的项目的名称 /// 为用户写入的其要取的变量的索引号,其为ReadItemNo返回的范围内的某个数 /// 返回错误码,见附录 /// [DllImport("kingvewcliend.dll")] //[SecurityPermission(SecurityAction.Assert, Unrestricted = true)] public static extern int GetItemNames(StringBuilder sName, int wItemId); /// /// 将某个项目添加到采集列中 /// 是要加入采集的项目名 /// TagId项目采集的标识号 /// 项目的数据类型 /// 返回错误码,见附录 /// [DllImport("kingvewcliend.dll")] public static extern int AddTag(string sRegName, ref int TagId, ref int TagDataType); /// /// 向某个项目中有应用程序向组态王方向写数据 /// /// 为要采集项目的标识号 /// bVal、lVal、fVal、sVal为设定的数值,用户将根据变量的类型设定数值 /// bVal、lVal、fVal、sVal为设定的数值,用户将根据变量的类型设定数值 /// b
2021-11-23 17:17:59 23KB 组态王 opc Kingvewclien KingView
1
介绍了OPC技术的体系结构原理和OPC客户端程序设计方法,提出了使用定制接口访问数据的OPC客户程序的方法,利用VC6.0编写了OPC客户端应用程序,详细介绍了OPC客户端应用程序实现的步骤。该方法使用组态王作为服务器,通过组态王的OPC接口来访问数据库中的数据变量,实现了OPC编程客户端与组态王服务器之间的数据交换。
2021-10-05 22:25:36 325KB 行业研究
1
组态王OPC配置工具;配置组态王的opc服务端和客户端
2021-04-13 20:24:18 827KB 组态王opc
1
Kingvewcliend.dll ,组态王的OPC驱动,开发简单,直接加载即可读数
2019-12-21 21:37:33 136KB 组态王 opc
1
例子简单实用,使用C#开发,调用Kingvewcliend.dll库开发。
2019-12-21 21:37:33 99KB 组态王 OPC
1