登录
首页 » 通信 » 该技术文档比较全面的讲解了vc下的类库MFc操作电话和传真的使用方法和技巧。...

该技术文档比较全面的讲解了vc下的类库MFc操作电话和传真的使用方法和技巧。...

于 2022-05-07 发布 文件大小:9.23 kB
0 171
下载积分: 2 下载次数: 1

代码说明:

该技术文档比较全面的讲解了vc下的类库MFc操作电话和传真的使用方法和技巧。-more comprehensive account of the library vc Modified operation of the telephone and fax use of methods and techniques.

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

发表评论

0 个回复

  • 仿真系统中QPSK的码头代码,大家可以作为参考
    仿真通信系统中QPSK的码头代码,大家可以作为参考-Simulation of Communication Systems pier QPSK code, we can serve as a reference
    2022-03-11 09:44:24下载
    积分:1
  • c# 串行数据传输
    串行数据传输为那些新的串行通信和 VC + + 的世界看起来有点难。 很久以前,我已搜遍了对 codeguru.com 的串行数据传输的一些帮助,我得到了一些有价值的信息。 这是我的梦想,开发一个简单的类,用于实现自那时以来的串行数据传输。 后七个月实际领域的工作经验的串行通信, 我开发了一个简单的类,用于实现串行传输使用 WinAPI 函数。 此类的细节之前,有必要知道串行数据传输的基本知识。
    2022-07-14 20:06:47下载
    积分:1
  • with k= 2/3 rate and 8
    with k= 2/3 rate and 8-psk modulation outputs are made by using convolutional codes.-with k= 2/3 rate and 8-psk modulation outputs are made by using convolutional codes.
    2022-07-18 16:19:25下载
    积分:1
  • 代码的详细描述
    详细描述了码分多址编解码算法的原理和实现方法
    2022-03-21 19:17:59下载
    积分:1
  • MATLAB程序的仿真比较。随后,针对QPsK,详细讨论了其基本原理和具体的实现算法,并进行了仿真验证,然后选用HSP502巧数字上变频芯片和HSP50214B...
    MATLAB程序的仿真比较。随后,针对QPsK,详细讨论了其基本原理和具体的实现算法,并进行了仿真验证,然后选用HSP502巧数字上变频芯片和HSP50214B数字下变频芯片,设计了数字调制、解调器的实现方案。最后,作为对整个数字视频图像传输系统的宏观认识,利用M户JLAB中的实时建模仿真Simullnk库对典型的视频图像传输系统一数字视频广播系统(D vB),进行了建模、仿真和初步的分析,结果表明:在高斯白噪声的传输环境下,系统采取的一系列抗干扰措施,包括内、外码级联的信道纠错编码和先进的调制技术(o FDM)等,保证了信源信息传输的有效进行。-MATLAB simulation comparison. Then, against QPsK to discuss in detail the basic principles and specific algorithm, a simulation test, and then choose the cleverest HSP502 figures HSP50214B frequency chips and digital down conversion chips, the design of digital modulation, demodulation for the realization of the program.MJLABSimullnk(D vB):Andean white noise transmission environment, the system adopted a series of anti-jamming measures, including internal and external codes Cascade Channel advanced error correction coding and modulation techniques (o FDM), ensuring a source of information for the effective transmission.
    2023-02-27 10:10:04下载
    积分:1
  • it can delete the zero from the HDLC frame ,make the information correct.
    他可以完成HDLC帧的删零功能,使得收端能够正确的恢复出HDLC中携带的信息-it can delete the zero from the HDLC frame ,make the information correct.
    2022-02-12 04:09:36下载
    积分:1
  • Delphi写的一个比较不错的 OPC DA Server程序,作为开发OPC Server的一个不错参考。OPC 是OLE在工控领域的应用,同一了不同组态软件...
    Delphi写的一个比较不错的 OPC DA Server程序,作为开发OPC Server的一个不错参考。OPC 是OLE在工控领域的应用,同一了不同组态软件之间及组态软件与应用程序之间的通讯标准,以前组态软件与应用程序之间的通讯主要是应用DDE技术。-Delphi wrote a quite good OPC DA Server procedures, the development of OPC Server as a good reference. OPC is OLE in the field of industrial applications, the same between different configuration software and configuration software applications and communications between the standard configuration prior to application software and communications between the main technology is the application of DDE.
    2022-04-16 16:47:18下载
    积分:1
  • HP688的电话薄转换程序
    HP688的电话薄转换程序-HP688 the phone book conversion
    2022-04-25 03:46:28下载
    积分:1
  • c# plc modibus
    c# 串口 以太网通信 modibus  连接 plc  从文本框输入负数 -2 补码=反+1=进位+原数 Vb 清除输入缓冲区 输出缓冲区 c#用不用清除??哪个函数?? //發送二進制數據 ?????????????? private void SendBytesData(SerialPort serialPort) { ////从 文本框取得数据 如果负数 -2 怎么办???? byte[] bytesSend = Encoding.Default.GetBytes(txtSend.Text); spcom.Write(bytesSend, 0, bytesSend.Length); } 通过MODBUS TCP读写PLC源码 功能模块一:读写PLC主模块 using System; using System.Net; using System.Net.Sockets; public static void WriteWord(int mwAddress,int mwValue) {写字到以太网 if (init_plc() == 0) { try { hi = mwAddress / 256; low = mwAddress - hi * 256; hi1 = mwValue / 256; ///////////16bit low1 = mwValue - hi * 256; sendBuf[7] = 6; sendBuf[8] = (byte)hi; sendBuf[9] = (byte)low; sendBuf[10]
    2022-07-10 15:42:30下载
    积分:1
  • Contacts Management System 1.0 can be your convenience, safe management of your...
    通讯录管理系统1.0 可以为您方便地, 安全地管理你的通讯录, 是您的家庭好帮手. 本系统使用Visual C++(MFC)开发, ODBC开放式数据库源 -Contacts Management System 1.0 can be your convenience, safe management of your correspondence, Your family is a good helper. The system uses Visual C (MFC) development and ODBC database open source
    2023-01-15 17:50:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载