-
at the school for a teaching model factory for the teaching model control system...
这是本人在校期间为一家教学模型厂做的教学模型控制系统,VC6开发,能在演示视频的同时利用串口对模型进行同步控制,并可任意切换。系统运行需微软串口控件MSCOMM32.OCX,MediaPlay9.0-at the school for a teaching model factory for the teaching model control systems, VC6 development, in the demonstration video using the model for serial synchronous control and can arbitrarily switch. Microsoft operating system required Serial Control MSCOMM32.OCX, MediaPlay9.0
- 2022-07-02 15:56:03下载
- 积分:1
-
循环式远动规约cdt仿真程序
1.主题内容与适用范围
本标准规定了电网数据采集与监控系统中循环式远动规约的功能、帧结构、信息字结构和传输规则等。...
循环式远动规约cdt仿真程序
1.主题内容与适用范围
本标准规定了电网数据采集与监控系统中循环式远动规约的功能、帧结构、信息字结构和传输规则等。
本标准适用于点对点的远动通道结构及以循环字节同步方式传送远动设备与系统。本标准还适用于调度所间以循环式远动规约转发实时信息的系统。
2. 引用标准
国家标准:《地区电网数据采集与监控系统通用技术条件》和《远动终端通用技术条件》。
3. 一般技术要求
3.1本规约采用可变帧长度、多种帧类别循环传送、变位遥信优先传送, 重要遥测量更新循环时间较短,区分循环量、随机量和插入量采用不同形式传送信息,以满足电网调度安全监控系统对远动信息的实时性和可靠性的要求。
-err
- 2023-05-01 11:30:04下载
- 积分:1
-
八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的...
八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的皇后后,第i+1行找不到合适的位置,这时就回到第i行,把第i行的皇后放到下一个位置,继续尝试下一行。如此反复,知道找到所有的解。注意,这种算法找的解可能有等价的,某些解可由别的解经过旋转棋盘得到。-visual demostration in vc of eight queens problem.
algorithm: backtracking.
First, put a queen on first line then find a suitable position on 2nd line for next queen, and so on. When all eight lines have queens, it means we have find a solution. If we put the i-th queen, but can find a suitable position on the (i+1)th line, then back to the ith line and move the queen on the ith line to next suitable position and move on to the next line. Repeat this until we have found all the solutions. Note:By this mean, some solutions maybe equivalent to others, some can be acquired by the rotation of other solutions.
- 2022-03-23 15:20:19下载
- 积分:1
-
apache log4cxx的使用演示,可以看看输出LOG到底有多方便。
apache log4cxx的使用演示,可以看看输出LOG到底有多方便。-apache log4cxx the use of demonstration, in the end can take a look at how easy LOG output.
- 2022-02-02 15:47:39下载
- 积分:1
-
多线程编程演示。在该该程序中演示了多线程的问题!有助于理解线程的开启和同步线程的机制...
多线程编程演示。在该该程序中演示了多线程的问题!有助于理解线程的开启和同步线程的机制-multithreaded programming demo. The demonstration of the process of multi-thread! Thread help understanding the opening threads and synchronization mechanisms
- 2022-12-15 16:50:03下载
- 积分:1
-
犯错
固定资产管理的小系统。
二、固定资产管理系统
(一)必改内容:
1、建立卡片时,部门的提示不完整,没有进行多级提示。
2、固定资产卡片建立时,其单价缺少控制,不符合财务制度的规定。
3、固定资产累计折旧数额不应超过原值,此软件不符合财务制度的规定。
4、固定资产卡片一旦建立,初始化后不应允许修改,而此软件则违反了这个原则,不符合有关财务制度的规定。
5、固定资产转移时,可以改变固定资产卡片内容,这是非常严重的事情,必须修改。
6、固定资产进行日常操作后,进行卡片查询时,计算机提示:显示格式错误。
(二)建议修改内容:
1、折旧方法在选择为“不提折旧”时,应有系统提示。
2、在查询时,系统提示不清楚,菜单提示不准确,用户难以掌握。
3、固定资产进行变动时,在修改卡片时,应有准确提示。-err
- 2022-04-21 05:55:55下载
- 积分:1
-
编写可串行化类时,MFC用你指定的模式号制定一个粗略的版本控制方式。在向档案写数据时,MFC用模式标记该类的实例;而在读回数据时,MFC将档案中的记录的模式号和...
编写可串行化类时,MFC用你指定的模式号制定一个粗略的版本控制方式。在向档案写数据时,MFC用模式标记该类的实例;而在读回数据时,MFC将档案中的记录的模式号和应用程序中使用着的 该类对象的模式号做比较,如果两模式号不匹配,则MFC发送一个CArchiveException,其m_cause 等于CArchiveException::badSchema。没有得到处理的该类异常会促使MFC显示一个对话框,提示 “非预期的文件格式”。如果每次修改对象的串行化存储格式时都能做到增加模式号,那么就不怕 这种无心的操作―试图把磁盘中存的老版本对象读入内存里的新版本对象了。 [代码性质] VC完整应用程序代码 [代码作者] 阿豪(kof) [文件大小] 369K-prepared Serializable category, the MFC with you specify the mode of development of a rough version control mode. To write data files, the MFC model with markings such examples; In reading back the data, MFC will file the record of the model and application procedures with the use of such objects, the model used for comparison, if the two patterns do not match, and then send a CArchiveException MFC, equivalent to m_cause CArchiveException : : badSchema. Not to be addressed such abnormal prompted MFC will show a dialog box, suggesting that "unintended file format." If every amendment targets of serial storage format can achieve the increase mode, so it
- 2022-08-17 22:59:40下载
- 积分:1
-
一个电脑配置DIY管理系统,本代码适合初学数据库者学习借鉴
一个电脑配置DIY管理系统,本代码适合初学数据库者学习借鉴-a DIY computer configuration management system, the database code suitable for beginners who learn
- 2023-02-18 05:45:03下载
- 积分:1
-
PLL design assitant, from M.H.Perrott, MIT
PLL design assitant, from M.H.Perrott, MIT
- 2022-02-12 08:39:15下载
- 积分:1
-
读取研华1753板卡输入输出
读取研华1753板卡输入输出
,读取研华1753板卡输入输出,
读取研华1753板卡输入输出
- 2022-11-17 09:35:03下载
- 积分:1