-
C# 模拟鼠标操作源代码
C# 模拟鼠标操作,单击后鼠标将自动上移。
const int MOUSEEVENTF_MOVE = 0x0001;//表示鼠标移动
const int MOUSEEVENTF_LEFTDOWN = 0x0002;//表示鼠标左键按下
const int MOUSEEVENTF_LEFTUP = 0x0004;//表示鼠标左键松开
您的鼠标发生了自动上移,并双击了窗体一次!
- 2022-07-03 02:35:10下载
- 积分:1
-
random_medium
说明: 优化版 随机介质模型建立;模型的建立代码及其输出实例(the optimized random medium model which is based on the normal random medium model)
- 2021-01-28 17:38:35下载
- 积分:1
-
WinDivert-1.4.3-Source
超好用的网络抓包框架(Windivert)
主要有以下功能:
1、捕获网络数据包
2、筛选/丢弃网络数据包
3、嗅探网络数据包
4、(重新) 注入网络数据包
5、修改网络数据包
主要有以下特点:可抓包,修改包(Windivert
The main functions are as follows:
1. Capturing Network Packets
2. Screening/Dropping Network Packets
3. Sniffing Network Packets
4. (Re) Injection of Network Packets
5. Modifying Network Packets
The main features are as follows: can grab the package, modify the package)
- 2019-01-21 13:58:35下载
- 积分:1
-
shanchuedittext
Customize EditText instance with deletion function, which is often used in login, search and other places.
- 2020-06-21 08:40:02下载
- 积分:1
-
有限元计算程序(matlab)
说明: 它将求解域看成是由许多称为有限元的小的互连子域组成,对每一单元假定一个合适的(较简单的)近似解,然后推导求解这个域总的满足条件(如结构的平衡条件),从而得到问题的解。(It regards the solution domain as consisting of many small interconnected subdomains called finite element elements, assumes a suitable (relatively simple) approximate solution for each element, and then deduces that the solution of this domain satisfies the conditions (such as the structural equilibrium condition), so as to obtain the solution of the problem.)
- 2020-06-19 19:20:02下载
- 积分:1
-
TI28335电机控制
说明: 电机控制原理,ti矢量控制算法原理,控制实例算法以及历程代码,适合28335学习这学习电机控制(Motor control principle)
- 2020-06-15 10:01:45下载
- 积分:1
-
套打程序,定位、画线、插图
套打程序,定位、画线、插图-chromatography printing procedures, positioning, line drawing, illustration
- 2022-06-03 00:32:59下载
- 积分:1
-
CE6.1(XP专用,过梦幻保护)
CE修改器,最新过梦幻西游保护版!!!复活CE 。内存直读!!!(CE modifier, the latest Fantasy Westward Journey Protection Edition!!! Resurrection of CE. Memory Direct Reading!!!)
- 2018-12-21 11:45:17下载
- 积分: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
-
Sample RSS channel created for my web site. It s more of a template so you ll go...
Sample RSS channel created for my web site. It s more of a template so you ll going to have add function to take data from your DB.
- 2022-03-07 15:46:22下载
- 积分:1