-
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
-
最小二乘法多次曲线拟合算法
最小二乘法多次曲线拟合算法-Multi-times Least squares algorithm curve fitting
- 2022-03-30 16:57:49下载
- 积分:1
-
UART0_2_LCD
瑞萨R5F1000FG 串口,LCD显示(Risa R5F1000FG Serial Port, LCD Display)
- 2019-04-09 17:06:28下载
- 积分:1
-
BRA
Digital Predistortion of Nonlieaner RF Power Amplifier with Memory Effects.
This M code simulates a DPD technique linearization for a AB-class nonlinear HPA with memory effects. Here we consider a memory polynomial predistorter to modeling nonlinearity characteristics and memory effects of a HPA.Simulation procedures divided into three separate parts:
1)Analog imperfection compensation for the direct upconversion transmitter
2)Design a DPD based on a memory polynomial predistorter
3)Performance evaluation via a number of parameters such as:EVM,PSD,SNR,
- 2011-05-10 00:45:24下载
- 积分:1
-
interrupt controller 设计
interrupt controller 设计-interrupt controller
- 2022-01-27 20:53:08下载
- 积分:1
-
AUTOCAD 程序员使用的,ARX图纸数据结构显示
AUTOCAD 程序员使用的,ARX图纸数据结构显示-AutoCAD programmers using the data structure ARX drawings show
- 2022-06-26 04:48:40下载
- 积分:1
-
Visual-Calendar-Planner
Emr 电子医疗记录软件,国外产品 ,提供医院的朋友使用(Emr)
- 2009-12-26 12:38:18下载
- 积分:1
-
介绍SAS语言 The little SAS book
《The Little SAS Book 中文版》以大量实例、清晰简明的解释以及尽可能少的术语来介绍SAS语言,且大部分的功能均来自Base SAS。Base SAS包含了所有程序员所使用的核心功能。(The Little SAS Book Chinese Edition introduces SAS language with a large number of examples, clear and concise explanations and as few terms as possible, and most of its functions come from Base SAS. Base SAS contains the core functions used by all programmers.)
- 2020-06-18 03:40:01下载
- 积分:1
-
navbarControl
界面美化控件,可以提高界面的美观程度,使用方便(Interface, landscaping controls, can improve the level of the interface appearance, easy to use)
- 2009-11-06 19:44:52下载
- 积分:1
-
Android手势识别的实现(源码)
Android手势识别的实现附上源代码,在屏幕上方划动手指,即可实现手机的响应,执行相应的操作,比如滑动、切换屏幕、图片放大、打开应用程序等,自动判断手势相似度,比较基础的安卓手势操作例子。
- 2022-01-25 16:02:59下载
- 积分:1