-
改程序描述了,在vs中数据库的一系列的用法,重数据库的链接,数据库的创建,数据库的访问和数据库视图的建立,数据库修改等基本的过程。不愧为学习数据库的好例子。...
改程序描述了,在vs中数据库的一系列的用法,重数据库的链接,数据库的创建,数据库的访问和数据库视图的建立,数据库修改等基本的过程。不愧为学习数据库的好例子。-Change procedure described in the series vs the usage of the database, re-link to the database, database creation, database access and database view creation, database, modify the basic process. Worthy of study and a good example of the database.
- 2022-02-04 00:48:03下载
- 积分:1
-
ex_9_bus_PMU
说明: WSCC 3-Machines 9-bus system
- 2021-02-10 22:46:58下载
- 积分:1
-
test1.part08
说明: 这是一个基于pocketsphinx的例子程序,已经在andtoid studio编译成功,并能识别简单的词汇。这是第8部分(This is an example program based on pocketsphinx, which has been successfully compiled in andtoid studio and can recognize simple words. This is the 8th part.)
- 2020-06-21 19:00:01下载
- 积分:1
-
QT
说明: QT界面开发,产品研发界面自定义设计、包含自定义设置项,(QT interface development, product development interface custom design, including custom settings.)
- 2019-07-31 18:01:12下载
- 积分: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
-
javaSIG
官方提供的唯一的HL7 V3的API例子(The only API example of the official HL7 V3 provided by the official)
- 2020-09-22 18:07:50下载
- 积分:1
-
carMoveDected
说明: 基于qt平台的视频处理,对画面中的车辆进行识别检测(Based on the QT platform video processing, the vehicle in the picture is identified and detected)
- 2020-12-10 23:04:02下载
- 积分:1
-
FT2232hlSysFifo
说明: 可以用于linux环境下qt采集FT2232H上传数据,并且还有界面显示(It can be used for QT collection of ft2232h upload data)
- 2020-09-06 08:51:54下载
- 积分:1
-
基于DIV的JS文字滚动特效
基于DIV的JS滚动条控制文字滚动特效,拖动滚动条,文字区域可上下滚动,滚动条也是自定义的,不是默认风格的滚动条,本滚动条不但兼容IE浏览器,还可正常运行于火狐和Chrome等浏览器中。
- 2022-03-15 05:58:54下载
- 积分:1
-
PIC18_EEPROM PIC单片机EEPROM读写程序
PIC单片机EEPROM读写程序 IIC硬件接口程序 , 读写内部数据
- 2022-03-05 11:59:29下载
- 积分:1