-
ntop official documentation and installation configuration files, ntop which is...
ntop官方文档及安装配置文件,其中ntop是基于sniffer的一种网络监控工具.-ntop official documentation and installation configuration files, ntop which is based on a network sniffers monitoring tools.
- 2023-04-19 15:00:03下载
- 积分:1
-
this document for LCD driver chips for Samsung KS0093 spent mainly on the COG
此文件为液晶驱动芯片 为三星的KS0093 主要用在COG上-this document for LCD driver chips for Samsung KS0093 spent mainly on the COG
- 2022-03-25 18:12:28下载
- 积分:1
-
PHLILPS RC500 读写函数原代码
PHLILPS RC500 读写函数原代码
-PHLILPS RC500 original code reader function
- 2023-07-11 10:10:03下载
- 积分:1
-
VB曲线图控件源代码
VB曲线图控件源代码,用于绘制折线、曲线的控件,自带一个程序示例,很好用,所绘制的效果如下图截图所示。本实例是用线条演示随机数的历史数据回调。
- 2023-06-13 08:25:03下载
- 积分:1
-
学生成绩管理c源代码 学生成绩管理c源代码
学生成绩管理c源代码 学生成绩管理c源代码-student performance management c source code management student achievement c sou rce code
- 2022-07-22 06:33:18下载
- 积分:1
-
Ni-LabVIEW的源程序的第六个,具体请看内容
很少见的哦
Ni-LabVIEW的源程序的第六个,具体请看内容
很少见的哦-Ni-LabVIEW source of the sixth, details, please read the contents rarely see oh! !
- 2022-01-25 15:27:36下载
- 积分:1
-
电气新国标 多下载 0.4KV~40.5KV户内高压开关柜
电气新国标 多下载 0.4KV~40.5KV户内高压开关柜-Electric new multi-GB downloads 0.4KV ~ 40.5KV indoor High-voltage Switch Cabinet
- 2022-02-21 06:49:37下载
- 积分:1
-
图文切换代码-类似于JS图片展示
一款由jquery制作实现的图文切换代码-类似于JS图片展示,切换的内容包括了图片和文字,左右两侧各显示出控制按钮,通过这两个按钮可控制图文区域左右切换,滑动风格的切换,例子中向你介绍了本效果的多种用法,请下载特效包参阅。
- 2022-11-25 01:45:03下载
- 积分:1
-
OPC development required, OPCFoundation open Boards.
OPC开发必备,OPCFoundation公开的开发套件。-OPC development required, OPCFoundation open Boards.
- 2022-02-03 01:43:25下载
- 积分: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