-
source code for game
样品的化学需氧量游戏。这个将真正有助于cpp程序员也为初学者
- 2022-01-30 21:33:12下载
- 积分:1
-
MPC860_SMC2_INIT
微处理器MPC860的相关C程序(MPC860 microprocessor procedures related C)
- 2007-12-13 22:53:48下载
- 积分:1
-
Patient_Data
MFC中以ADO的形式连接Access数据库,包括增、删、改、查(MFC in the form of ADO connection to Access database, including add, delete, change, check)
- 2011-08-03 14:51:42下载
- 积分:1
-
SY_003
说明: C51系列单片机,用C语言编写,使扬声器发声(C51 series of microcontrollers, C language, so that the speaker sound)
- 2011-03-16 17:11:28下载
- 积分:1
-
voltagesourceinvlcfltr
该工程为基于C2000系列的DCAC逆变器源代码,适合于初学者(The project is based on the C2000 series DCAC inverter source code, suitable for beginners)
- 2018-06-29 22:29:43下载
- 积分:1
-
LEX词法分析器
LEX写的C语言的词法分析器,parser generator上编译通过,可以在VS2013上运行。输出单词 词素 属性
- 2023-06-14 11:30:04下载
- 积分:1
-
RdWrtIni
说明: ini文件读取和写入,基于MFC实现的。因为Wince下没有实现ini文件的读写。(ini file to read and write, based on the realization of the MFC. Wince achieve because there is no read and write ini files.)
- 2009-07-30 11:42:49下载
- 积分:1
-
hevod1.0
说明: 燕赵宽频点播系统V1.0
hevod视频点播系统是一套采用Asp.net开发开源的视频在线播放系统,系统采用三层架构开发,数据库采用Access,适合于中小型网站应用。
1、公用部分采用了用户控件进行调用
2、用户分权限管理,后台随时记录用户登录日志(Yanzhao V1.0hevod broadband VOD VOD System is a set of open source development using Asp.net online video player system, three-tier development, database using Access, suitable for small and medium-sized Web applications. 1, the common parts used to call 2 user controls, user sub-rights management, the background at any time the user login log records)
- 2008-11-19 10:12:15下载
- 积分:1
-
ESP8266_RTOS_SDK-3.1
说明: ESP8266 web及MQTT开发包,能够快速实现功能,减少开发时间(ESP8266 web and MQTT development kit can realize functions quickly and reduce development time)
- 2020-06-22 22:00:02下载
- 积分:1
-
hex转bin的程序
hex转bin的程序, 支持大于64K的hex, 网上下载的Hex2Bin不支持64k. 包含工程文件, 简单包装即可生成一个Hex2Bin的小程序【核心代码】 String szLine = ""; String szHex = ""; if (szHexPath == "") { MessageBox.Show("请选择需要转换的目标文件! ", "错误"); return; } StreamReader HexReader = new StreamReader(szHexPath); while (true) { szLine = HexReader.ReadLine(); //读取一行数据 if (szLine == null) //读完所有行 { break; } if (szLine.Substring(0, 1) == ":") //判断第1字符是否是: { if (szLine.Substring(1, 8) == "00000001")//数据结束 { break; } szHex = szLine.Substring(9, szLine.Length - 11); //读取有效字符 } } HexReader.Close(); //关闭目标文件 Int32 i; Int32 j = 0; Int32 Length = szHex.Length; byte[] szBin = new byte[Length]; pbConvert.Maximum = Length / 2; for (i = 0; i < Length; i = 2) //两字符合并成一个16进制字节 { szBin[j] = (byte)Int16.Parse(szHex.Substring(i, 2), NumberStyles.HexNumber); j ; pbConvert.Increment(i); } if (szBinPath == "") { szBinPath = Path.ChangeExtension(szHexPath, "bin"); tbBinPath.Text = szBinPath; } FileStream fBin = new FileStream(szBinPath, FileMode.Create); //创建文件BIN文件 BinaryWriter BinWrite = new BinaryWriter(fBin); //二进制方式打开文件 BinWrite.Write(szBin, 0, Length); //写入数据 BinWrite.Flush();//释放缓存 BinWrite.Close();//关闭文件 MessageBox.Show("文件转换完成! ", "提示"); } catch (Exception ex) { MessageBox.Show(ex.ToString()); }
- 2020-12-05下载
- 积分:1