-
Menu
菜单空间的使用,教你如何使用菜单和修改菜单属性(Menu, use of space to teach you how to use the menu and modify menu properties)
- 2009-10-17 10:15:42下载
- 积分:1
-
msp430g2553pinlvji.c
基于MSP430G2553的频率计数计的程序编写,已经过测试,程序无误可以完整运行。(Based on the frequency count MSP430G2553 meter programming, has been tested, the program can complete run correctly.)
- 2013-08-17 11:33:17下载
- 积分:1
-
四分之一车辆悬架建模仿真
说明: 案例选题:1/4车辆悬架模型的建模与仿真
软件工具:matlab的simulink
内容简述:建立路面谱,建立1/4车辆悬架模型,运用simulink对1/4悬架进行路面行驶仿真分析。结果讨论。(Case topic: Modeling and Simulation of quarter vehicle suspension model Software tool: simulink of MATLAB Content Description: the road spectrum is established, the quarter vehicle suspension model is established, and the road driving simulation analysis of quarter suspension is carried out by using Simulink. The results were discussed.)
- 2021-01-08 13:42:10下载
- 积分:1
-
TCP
实现在TCP方式下客户端和服务器端的数据传输过程(To achieve the data transfer process in the client and server side TCP mode)
- 2012-06-01 14:50:49下载
- 积分:1
-
高质量C语言编程指南
说明: 高质量C++/C编程指南,作者:林锐博士(High quality C + + / C Programming Guide)
- 2020-05-28 15:37:44下载
- 积分:1
-
C# 根据路径使用DirectoryInfo创建文件夹
C# 根据路径创建文件夹,具体来说是使用DirectoryInfo对象的Create方法创建文件夹【目录】。如果用户未指定路径,则在程序当前目录下创建文件夹,若指定路径,则在指定的路径层级下创建目录。
在创建开始前,对用户输入的目录名或路径格式进行验证,然后判断该路径下是否存在该目录,最后创建文件夹。下面是相关的代码:
if (textBox1.Text == string.Empty)//判断输入的文件夹名称是否为空
{
MessageBox.Show("文件夹名称不能为空!");
}
else
{
DirectoryInfo dinfo = new DirectoryInfo(textBox1.Text);//实例化DirectoryInfo类对象
if (dinfo.Exists)//使用DirectoryInfo对象的Exists属性判断要创建的文件夹是否存在
{
MessageBox.Show("该文件夹已经存在");
}
else
{
dinfo.Create();//使用DirectoryInfo对象的Create方法创建文件夹
}
}
- 2023-02-21 06:20:03下载
- 积分:1
-
R7F0C014 四轴飞行器
基于瑞萨单片机的四轴飞行器设计,包括原理图,PCB已经程序源码(Four-axis aircraft design based on Reissa MCU, including schematic diagram, PCB has been programmed source code)
- 2019-07-11 15:19:30下载
- 积分:1
-
data structure
数据结构――哈希表的一个应用算法实现源程序代码,多多指教。-data structure-- Hash Table 1 algorithm application source code, the exhibitions.
- 2023-08-04 12:50:04下载
- 积分:1
-
HT1621_LCDDriver
说明: 对HT1621的驱动,提供C及汇编代码,
注有详细的代码说明,在C51,PIC上测试OK,
绝对有用。(The driver of the HT1621 to provide C and assembly code, annotated with detailed code instructions, in the C51, PIC test OK, not in vain.)
- 2010-04-10 12:22:06下载
- 积分:1
-
ADOctrlAccess
说明: ADO控制Access数据库。源来《Visual c++案例开发集锦》(ADO Control Access database. Source to " Visual c++ Collection of case development," )
- 2010-04-05 01:42:25下载
- 积分:1