-
使用Com口、Modem进行通讯的控件,自己做的。
使用Com口、Modem进行通讯的控件,自己做的。-I use Com, Modem communications for the controls themselves do.
- 2022-12-05 08:10:03下载
- 积分:1
-
RAS高级编程是一个RAS拨号程序高级开发,通过该程序不经能够实现电话拨号功能,还能实现如adsl、网通等拨号功能,还能够监控modem或者网卡的网络流量,绝对
RAS高级编程是一个RAS拨号程序高级开发,通过该程序不经能够实现电话拨号功能,还能实现如adsl、网通等拨号功能,还能够监控modem或者网卡的网络流量,绝对是一个值得读者学习的程序。-RAS is a high-level programming RAS Dial-up procedures advanced development, and the program can be achieved without a telephone dial-up function can be realized as adsl, Netcom, and other dial-up function, but also to monitor the modem or Ethernet network traffic is definitely a worthy readers learning process.
- 2022-02-26 03:15:27下载
- 积分:1
-
vc prepared DEBUG directory has been deleted. We run to help detect this.
vc编写,已删除DEBUG目录。大家运行,帮忙检测一下-vc prepared DEBUG directory has been deleted. We run to help detect this.
- 2022-03-12 11:01:23下载
- 积分:1
-
最新delphi7数据库开发指南 最新delphi7数据库开发指南
最新delphi7数据库开发指南 最新delphi7数据库开发指南 -Delphi7DataBaseDelphi7DataBaseDelphi7DataBaseDelphi7DataBaseDelphi7DataBase
- 2022-02-05 00:59:11下载
- 积分:1
-
微软亚洲研究院论文:ROHC
微软亚洲研究院论文:ROHC-TCP:单向操作的优化-Microsoft Asia Research Institute Papers : ROHC-TCP : Optimization of one-way operation
- 2023-07-18 09:25:03下载
- 积分:1
-
中国osg2.6实例,有详细的描述,它是必要的样品C.
中文osg2.6示例,有详细说明,有必要的示例代码
- 2022-05-13 04:59:12下载
- 积分:1
-
一种自动程序来获取窗口的更新包包含完整的…
一个自动获取Windows更新的程序 该压缩包内含有完整的源代码 采用VB编写-An automatic procedure to obtain Windows update package contains the complete source code using VB to prepare
- 2023-06-23 10:45:02下载
- 积分:1
-
断开ADSL重拨
aDSL断线重拨-disconnected aDSL redial
- 2023-06-17 22:05:04下载
- 积分:1
-
WCDMA接口协议中文版,用于详细了解WCDMA接口结构组成及流程
WCDMA接口协议中文版,用于详细了解WCDMA接口结构组成及流程-Chinese version of WCDMA Interface Protocol for details about the composition and structure of WCDMA interface flow
- 2023-06-13 23:10:11下载
- 积分: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