-
外点法C++
说明: C++实现外点法求解约束问题,其中有使用到单纯性法(C++ implements exterior point method to solve constraints, among which simplicity method is used.)
- 2020-06-23 21:40:02下载
- 积分:1
-
sle4428
说明: SLE 4418 / SLE 4428
Intelligent 8-Kbi t EEPROM
- 2019-11-16 06:03:15下载
- 积分:1
-
simplemac
这是3篇关于ST simpleMac 通信协议开发的问题,有兴趣的可以看一下(there are 3 paper about st simplemac development )
- 2012-11-16 11:16:04下载
- 积分:1
-
TestHtml2JPG
html2jpg 用于将html 网页内容,转换为jpg格式的图片内容(HTML 2jpg is used to convert HTML web page content into JPG format image content)
- 2020-06-16 04:20:01下载
- 积分:1
-
tecznology
Engaged in LAN development, multimedia technology engineers
- 2018-11-25 23:48:26下载
- 积分:1
-
Microlithography
用于duv光刻掩膜优化算法的模型,包含部分相干光照明,光刻胶分层模型,具体考虑了瞳孔放大系数,以及电磁波的畸变等因素。(The model for DUV photolithography optimization algorithm, including partially coherent light illumination and photoresist stratification model, takes into account the factor of pupil magnification and electromagnetic wave distortion.)
- 2020-12-01 14:39:26下载
- 积分:1
-
大五码和简码互相转换
大五码和简码互相转换-big yards and five yards interchangeable SR
- 2022-01-25 18:47:08下载
- 积分:1
-
skinPowerBuilder
对程序进行皮肤更换,使界面美观大方,颜色柔和。(Skin change)
- 2009-10-06 00:11:24下载
- 积分:1
-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
simulated annealing algorithm for traveling salesman problem (with C#)
模拟退火算法求解货郎担问题(用C#实现)-simulated annealing algorithm for traveling salesman problem (with C#)
- 2023-03-29 02:30:04下载
- 积分:1