-
EmpRecordsProject,员工考勤记录的组件
EmpRecordsProject,员工考勤记录的组件-EmpRecordsProject, staff attendance record of the components
- 2022-09-28 10:15:03下载
- 积分:1
-
WZX - 环岛 - 电磁
说明: 第十四届恩智浦智能车华北赛一等奖程序开源。(The 14th Enzhipu Smart Car North China Race first prize program open source.)
- 2020-12-20 09:49:09下载
- 积分:1
-
一个类似window系统中的资源管理器,用c#作的,还不错,欢迎大家来下载....
一个类似window系统中的资源管理器,用c#作的,还不错,欢迎大家来下载.-a similar window system for management of the resources used for the c#, not bad. Welcome to download.
- 2022-08-02 22:51:33下载
- 积分:1
-
MultiLanguage
程序实现多国语言的动态切换解决方案(procedures for multi-language dynamic switching solutions)
- 2004-09-22 16:50:36下载
- 积分:1
-
adhoc_mac_v2
Manet model in OPNET
- 2020-12-07 15:09:21下载
- 积分:1
-
OutPut1
第4章 基本输入处理OutPut1OutPut1.rar,很不错的vc源码,希望能对大家有所帮助(Chapter 4, the basic input processing OutPut1 OutPut1.rar, very good vc source code, I hope you can help)
- 2011-09-11 22:59:30下载
- 积分: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
-
creatfaststyle
演示了如何创建和删除一个应用程序的过程,使你深入了解windows系统中类似的操作过程是如何实现的(Demonstrated how to create and delete an application process, so that a deeper understanding of your windows operating system similar to the process of how to achieve the)
- 2007-12-14 19:52:09下载
- 积分:1
-
NAND_and_SD_card_SDIO_U_for_128M
采用STM32内部自带的usb控制器外加大页nandflash k9f1g08u0a实现一个128M的U盘(STM32 uses the internal built-in usb controller to increase foreign 128M page nandflash k9f1g08u0a to achieve a U-disk)
- 2020-11-11 15:59:45下载
- 积分:1
-
C语言写的俄罗斯方块
闲来无事,就尝试着编写一些以前花了不少时间才写出的俄罗斯方块,顺便练练手,看看自己的编程能力提升了多少,如果代码还有可以修改处,请指出。
- 2023-07-30 00:50:02下载
- 积分:1