登录
首页 » 通信 » 使用VB的OPC客户访问的最简单程序,本程序为异步访问程序.

使用VB的OPC客户访问的最简单程序,本程序为异步访问程序.

于 2022-02-04 发布 文件大小:3.41 kB
0 87
下载积分: 2 下载次数: 1

代码说明:

使用VB的OPC客户访问的最简单程序,本程序为异步访问程序.-The use of VB

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 帮同学做的毕业设计中用到的IIR,2阶,截止频率等参数均可以任意设置...
    帮同学做的毕业设计中用到的IIR,2阶,截止频率等参数均可以任意设置-Help of graduate students to do the design used in the IIR, 2 bands, parameters such as cut-off frequency can be arbitrarily set
    2022-11-16 23:20:03下载
    积分:1
  • 一个东东,探测360的~~ 小心点使用
    一个东东,探测360的~~ 小心点使用-1 Dongdong, detecting 360 of the ~ ~ be careful to use ~~~~~~~~
    2022-01-25 15:54:39下载
    积分:1
  • Simple camera. To compiling need header from sofia
    Simple camera. To compiling need header from sofia-cradle workstation.
    2022-09-22 16:35:03下载
    积分:1
  • WDM驱动程序设计   一.WDM简介   微软不断推出新的操作系统,现在Windows98和Windows2000已经成了主流,原先用来实现驱动...
    WDM驱动程序设计   一.WDM简介   微软不断推出新的操作系统,现在Windows98和Windows2000已经成了主流,原先用来实现驱动程序的VxD技术随着Win95的淡出也慢慢地将退出历史舞台,在Windows98和Windows2000中设备驱动程序将根据Windows驱动程序模型(WDM)来设计。WDM通过提供一种灵活的方式来简化驱动程序的开发,在实现对新硬件支持的基础上减少并降低所必须开发的驱动程序的数量和复杂性。 -WDM Driver Design 1. WDM briefed constantly introduce new Microsoft operating system, now Windows 98 and Windows 2000 has become mainstream. originally used to achieve the VxD driver technology with the Windows 95 are slowly fade out to be from the historical stage, in Windows 98 and Windows Device Drivers under Windows Flooding dynamic process model (WDM) to the design. WDM by providing a flexible way to simplify driver development, the realization of new hardware support on the basis of the reduction and cut the need to develop drivers for the number and complexity.
    2022-05-25 14:38:54下载
    积分:1
  • sip协议的中文版本,对开发很有帮助。
    sip协议的中文版本,对通信开发很有帮助。-sip the Chinese version of the agreement on the development of useful communication.
    2022-04-28 01:00:29下载
    积分:1
  • 讲述为什么使用网络模拟器. 如协议验证. 控制试验条件. 花费低,耗时少,协同工作和复杂性好. 以及为什么使用NS....
    讲述为什么使用网络模拟器. 如协议验证. 控制试验条件. 花费低,耗时少,协同工作和复杂性好. 以及为什么使用NS.-talk about why the use of the network simulator. If agreement certification. Control test conditions. Low-cost and less time-consuming. teamwork and good complexity. and why the use of NS.
    2022-08-03 10:42:47下载
    积分:1
  • 分组滤波器的C语言源码,用定点算法实现,可用来做数字滤波处理。...
    分组滤波器的C语言源码,用定点算法实现,可用来做数字滤波处理。-Packet Filter C language source code, using fixed-point algorithm can be used for digital filtering processing.
    2022-08-16 11:28:11下载
    积分:1
  • 简易FIR滤波器
    1、FIR数字滤波器的设计(1)在主函数中调用dsnFIR函数,滤波器参数设为21阶、带阻、矩形窗、采样率1000Hz、上下截止频率分别为100Hz,400Hz;(2)利用drawFIR函数分别画出所设计的FIR滤波器的幅频特性图和相频特性图。2、FIR数字滤波实现(1)编写一个输入信号子程序func(),输入信号为一连续函数,表达式为;(2)对输入信号进行采样,即       ,这里取采样率,得到离散序列x(n);(3)取x(n)中前40个点的值,将其转为复数存入复数数组x[64]中,并对x[64]做64点的FFT,得到的X(k)存回x[64]中;(4)已知在主函数中调用dsnFIR函数后得到的输出结果b[21]即为FIR滤波器单位冲激响应h(n)的值,将其转为复数存入复数数组h[64]中,并对h[64]做64点的FFT,得到的H(k)存回h[64]中;(5)已知用FIR滤波器对输入信号进行滤波就是将输入信号x(n)与滤波器单位冲激响应h(n)做卷积运算,故我转到频域采用FFT方法实现对输入信号x(n)的滤波,即将X(k)与H(k)相乘,得到滤波后信号的FFT变换Y(k),然后只需对Y(k)做IFFT变换即可得到滤波后信号y(n)。
    2022-05-23 13:46:22下载
    积分:1
  • VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue /////////////////...
    VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue ///////
    2023-07-24 17:35:03下载
    积分:1
  • Designed a FIR band
    设计了一个FIR带通滤波器,需要的可以参考-Designed a FIR band-pass filter, need to refer to
    2022-01-30 17:44:57下载
    积分:1
  • 696518资源总数
  • 104278会员总数
  • 53今日下载