-
18030zkTest
18030点阵字库生成工具,20点阵,自动生成bin文件(18030 dot matrix character generation tool, 20 dot matrix, bin file automatically generated)
- 2011-08-04 21:47:41下载
- 积分:1
-
20041217204609
C语言程序设计谭浩强,两个字 ----经典(C Programming Language Tan strong word-classic)
- 2006-08-04 20:18:52下载
- 积分:1
-
频谱分析 MATLAB FFT
说明: 对信号进行频谱分析,对频域下的信号进行细看(MATLAB fft are very good)
- 2020-06-20 16:27:31下载
- 积分:1
-
C++ _console自写申请为C++初学者
C++_console self writting application for beginners into c-C++_console self writting application for beginners into c++
- 2022-08-17 12:34:54下载
- 积分:1
-
用java开发终端平台上的Application程序, 比使用C++,Delphi等语言更加容易。 java语言似乎天生就适合团队开发。但是,摆在广大java开...
用java开发终端平台上的Application程序, 比使用C++,Delphi等语言更加容易。 java语言似乎天生就适合团队开发。但是,摆在广大java开发者面前的一个难题是,客户端必须安装JRE。真的必须安装JRE吗?其实你可以不装,只要使用Java Runner,无论在哪里,你的程序都可以Run起来。-spent on the terminal platform Application procedures, the use of C, Delphi and other languages easier. Java language seem naturally fit team development. However, the majority of java placed in front of the development of a problem is, the client must be installed JRE. Really must install the JRE? Actually, you can not, only use Java Runner, regardless of where your program can Run up.
- 2023-08-25 19:40:03下载
- 积分:1
-
4.0
说明: 神泣4.0客户端登录器,爱仕达回家的时候是的发顺丰到付对方水电费(shaiya is a very good game I LIKE it very much)
- 2020-06-22 08:20:01下载
- 积分:1
-
这是 关于tsp问题的原码。
请各位大虾指正。谢谢,
这是 关于tsp问题的原码。
请各位大虾指正。谢谢,
-on tsp This is the original code. Please correct me prawns. Thank you.
- 2022-02-04 01:42:45下载
- 积分:1
-
Swfoto 可用于图片展示的Flash图片读取容器
Swfoto 1.0 是一款flash(swf)读取图片的容器,可以用于各种网站网页中,用来制作图片切换、焦点图使用,自动读取指定文件夹中的图片并显示,功能特点:
图片自动防缩大小,保持比例,不变形
图片采用抗锯齿防缩方法,让图片放缩后依然清晰
可以定义图片是否有连接
方便网页布局,插入任何图片。
特别提醒:由于flashplayer9 升级了安全策略问题,所以需要保证所有的的文件(包括swfoto.swf 图片文件)都必须在统一域名下,不能在跨域读取图片了。
- 2022-01-22 08:22:58下载
- 积分:1
-
Professor-Lu-Wusheng-lecture
陆吾生教授是加拿大维多利亚大学电气与计算机工程系的教授。此课件为其在国内大学短期精品课程的课件。包含最优化问题求解,压缩感知方法及其在稀疏信号和图像处理中的应用(压缩、重构、降噪等)。(Professor Lu Wusheng University of Victoria, Canada Professor of Electrical and Computer Engineering. The courseware for the University in the domestic short-term quality courses courseware. Contains the optimization problem solving, compressed sensing method and its sparse signal and image processing application (compression, reconstruction, noise reduction, etc.).)
- 2011-05-09 01:14:44下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1