-
.NET 工作流设计
.net开发工作流的设计模板,能够详细的介绍.net工作流开发逻辑与模式,方面用户扩展。
- 2022-03-12 18:39:09下载
- 积分:1
-
elm极限学习机C++版本
这是elm极限学习机的c++版本,与官网提供的c++版本不同,是完全基于c++版本的一套代码,不需要和matlab混编,相关的学习资料可参考官网或者csdn上部分博客的内容,相对简单
- 2022-03-19 04:23:35下载
- 积分:1
-
VedioCapture
.net下的摄像头捕获代码,用于VS2005,VS2008下对USB摄像头的操作,要用到WINDOWS下的一个DLL控件,一般装了摄像头驱动都会自带(. Net code under the camera to capture, for VS2005, VS2008 USB camera under the operation, use a DLL to the WINDOWS under the control, generally installed drivers will bring their own camera)
- 2010-08-26 21:51:10下载
- 积分:1
-
hng
说明: c语言写的红外传输,带protues 仿真。(c language Infrared transmission, with protues simulation.)
- 2009-07-30 22:59:43下载
- 积分:1
-
solvingequation
加步探索法,二分法,黄金分割法,抛物线插值法求解方程的演示(Plus step-by-step exploration of law, black-and-white, golden section method, the parabolic interpolation method for solving equations of presentation)
- 2009-06-28 10:18:42下载
- 积分:1
-
SGMS
学生成绩管理系统SGMS,可对学生成绩进行管理,包括添加,删除与修改,并提供一定的数据统计整理功能,含用户手册。(A simple grading management system designed for undergraduate with adding, deleting and modifying functionality and basic statistical analysis of data. User manual is available.)
- 2013-08-01 04:28:16下载
- 积分:1
-
School-GIS
大学校园具有教学信息繁杂、学生信息量大、校园建筑本身的信息和学生对建筑的利用信息并存等特点。利用GIS强大的数据管理、空间分析和可视化表达功能,实现对校园信息的管理及学校地理信息的发布。校园地理信息系统可对校园地理实体进行GIS管理,还可将人文属性和学生对地理实体的使用关联,以便进行对校园信息、教学信息、学生信息等信息的交互查询;并且可以利用GIS软件的强大二次开发功能以及媒体的形式对所查询信息进行描述,还可以提供全方位的数据分析与决策,从而实现了校园信息的数字化。(University campus has the teaching information and complex, large amount of information, the information of campus building itself and the student to the use of building information coexist, etc.By the powerful data management, spatial analysis of GIS and visualization expression function, implementation of the campus information management and school geographical information release.Campus geographic information system for campus GIS geographic entity management, but also the cultural attributes associated with students on the use of the geographical entity, for the campus information interaction, teaching information, the information such as student information query And can make use of the powerful secondary development function of GIS software and the media in the form of the query information, you can also provide a full range of data analysis and decision-making, so as to realize the digital campus information.)
- 2014-06-28 17:35:27下载
- 积分:1
-
自定义webbrowser控件
控件主要用于学习webbrowser的操作流程.里面有一些自定义的开发.用户可以根据自己的要求完成开发.
- 2022-03-01 05:10:51下载
- 积分:1
-
avisample
生成avi视频截图序列。设置截图时长,截图频率,截图类型的参数。(Generate avi video sampling sequence.Screenshot duration, frequency and types of parameters are allowed to set freedom.)
- 2013-07-10 17:18:11下载
- 积分:1
-
C# SelectedItem选择移动数据项 点菜功能
这是个实用的小功能,在WEB开发时也经常会看到这种功能,将item数据项由左侧移动到右侧,这是一个选择+移动的功能,全部添加到选择的项中,判断是否已经选择了该菜单项,比如本例子利用左右移动SelectItem项实现了点菜功能:
private void button3_Click(object sender, EventArgs e)//移除所有已经选择的菜
{
lbChoose.Items.Clear();
}
private void button1_Click(object sender, EventArgs e)//单个添加到选择的项中
{
if (lbSocure.SelectedIndex != -1)
{
if (!lbChoose.Items.Contains(lbSocure.Text))//判断是否已经选择了该菜
lbChoose.Items.Add(lbSocure.SelectedItem.ToString());//添加选择的菜
else
MessageBox.Show("您已经选择了该菜,请重新选择。");
}
}
- 2022-06-13 08:29:58下载
- 积分:1