-
testlcd_C
说明: 一些小程序,希望能和大家一块分享,还希望大家能多多帮助阿以后(some small procedures, and we hope a share, but also hope that we can help a lot after A)
- 2006-04-19 11:33:16下载
- 积分:1
-
MATLAB编程
说明: matlab学习资料,《MATLAB编程(中文第二版)》(Material of studying matlab,)
- 2019-10-23 10:24:59下载
- 积分:1
-
页面置换算法 包括fifo 先进现出,最近最早未使用,lru算法
页面置换算法 包括fifo 先进现出,最近最早未使用,lru算法-Fifo page replacement algorithm, including advanced show, the first unused recently, lru algorithm
- 2022-07-22 06:41:50下载
- 积分:1
-
huibo
用MATLAB实现雷达回波信号的仿真源码程序(A simulation source program for radar echo signal by MATLAB)
- 2018-03-14 09:54:59下载
- 积分:1
-
UDF
说明: 防风栏设置udf ,使用好用,总结宏的使用(A windbreak bar set udf ,use it well and summarize the use of macros)
- 2020-12-21 18:11:20下载
- 积分:1
-
abaqus drucker-prager UMAT subroutine
说明: Drucker-Prager准则是岩石力学中最为重要的强度理论之一,在岩土工程研究中,尤其是在岩土工程数值分析中应用极为广泛。(Drucker-Prager criterion is one of the most important strength theories in rock mechanics. It is widely used in geotechnical research, especially in numerical analysis of geotechnical engineering.)
- 2021-03-02 18:29:34下载
- 积分:1
-
envelope
说明: 提取振动曲线的波峰和波谷值,返回对应的坐标值和峰值。(extract vibration curve peaks and trough values corresponding to the coordinates of the peak value.)
- 2006-04-07 12:31:11下载
- 积分:1
-
vb方面的编程,条形码编程。希望对大家有用。
vb方面的编程,条形码编程。希望对大家有用。-vb aspects of programming, bar code programming. Want to be useful to everyone.
- 2022-05-14 05:17:25下载
- 积分:1
-
豆表情代码
CSS3卡通DIY马铃薯土豆表情代码是一款jQuery+CSS3属性绘制卡通的马铃薯表情DIY特效。(CSS3 cartoon DIY potato expression code is a jQuery + CSS3 attribute drawing cartoon potato expression DIY special effect.)
- 2019-04-08 16:04:06下载
- 积分:1
-
C#修改Windows电脑的计算机名
Visual C#修改计算机名,修改电脑名称为另一个自定义的新名称,代码较简单,这里不多做介绍了,运行界面如示例截图所示。以下为核心部分代码,先睹为快,完整源码项目请下载:
[DllImport("kernel32.dll")]
private static extern int SetComputerName(string ipComputerName);//重写API函数
private void Frm_Main_Load(object sender, EventArgs e)
{
Computer computer = new Computer();//创建计算机对象
textBox1.Text = computer.Name;//显示计算机名称
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox2.Text == "")//判断计算机名称是否为空
{
MessageBox.Show("计算机名称不能为空!");
}
else
{
SetComputerName(textBox2.Text);//修改计算机名称
MessageBox.Show("计算机名称修改成功,请重新启动计算机使之生效!");
}
}
- 2022-03-07 15:38:03下载
- 积分:1