-
WinIO
说明: 并口库函数,对于并口控制时必须用到的库。(Parallel library function, the parallel port control library must be used.)
- 2008-11-02 01:00:34下载
- 积分:1
-
virtual-serial-port
单片机虚拟串口仿真图,里面有虚拟串口软件和串口调试助手,还有用proteus进行的仿真图,不用开发板一样进行仿真,只能说proteus太强大了。只要你想不到的,没有他做不到的!(Virtual serial port emulation chip chart, which has a virtual serial port software and serial debugging assistant, as well as performed with proteus simulation map, not the same simulation development board can only say proteus too strong. As long as you think, no he can not do!)
- 2013-07-31 16:19:11下载
- 积分:1
-
C# 获取Access数据库的数据表名称
C# 获取Access数据库的数据表名称,private void button1_Click(object sender, EventArgs e)
{//获取Access数据库的数据表名称
string MyAccessDBFile = @"F:Northwind.mdb";
string MyConnectString ="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" +MyAccessDBFile;
var MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectString);
MyConnection.Open();
var MyTables = MyConnection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
string MyInfo = MyAccessDBFile + "数据库的数据表包括:";
foreach (DataRow MyRow in MyTables.Rows)
{
string MyTable = MyRow["TABLE_NAME"].ToString();
MyInfo += MyTable + "、";
}
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK);
}
- 2023-01-05 19:40:03下载
- 积分:1
-
AssaEX插件
说明: 第一步:将该目录所有文件覆盖到石器客户端目录;
第二步:将授权文件license.yz放置到文件夹 saplus;
第三步:打开目录saplussaplus.ini 修改 assa根目录= (如情缘:assa根目录=assa;
第四步:打开 64位系统请导入我后再操作.reg 并点击 确定;
第五步:重启电脑;
第六步:打开客户端自带的ASSA即可(如有错误请参考第三步assa根目录名称是否有错);(Step 1: overwrite all files in the directory to the stone tool client directory
Step 2: place license.yz in the folder saplus
Step 3: open the directory saplus saplus.ini and modify the Assa root directory = (for example, romance: Assa root = Assa)
Step 4: open 64 bit system, please import me and then operate. REG and click OK
Step 5: restart the computer
Step 6: open the Assa provided by the client (if there is any error, please refer to step 3 whether the root directory name of Assa is wrong))
- 2021-02-19 23:09:43下载
- 积分:1
-
matrix
matrix.C 该文件是矩阵键盘的驱动代码,其中包括了main主函数以及矩阵键盘判读的代码( matrix.C )
- 2013-11-04 13:02:32下载
- 积分:1
-
ST7920_SPI-master
说明: ST7920 for arduino atmega328
- 2021-04-26 22:48:45下载
- 积分:1
-
24dianlunwen
一个24点游戏的论文,可以作为格式来用,也可以用来自己做游戏(The papers of a 24-point game, as the format to use, can also be used to make their own game)
- 2012-07-21 12:45:36下载
- 积分:1
-
MFC
(1)定义一个抽象基类Shape,同它派生出5个类:圆、正方形、矩形、梯形、三角形。
(2)利用虚函数计算几种图形面积。
(3)演示构造函数、复制构造函数、析构函数的作用和调用顺序
(4)用类模板具体实现。
(5)利用MFC类库在图形用户界面上绘制及修改这些图形,采用对话框输入输出图形的基本属性,或者利用运算符重载输入输出图形的基本属性。
(6)用文件保存图形信息,且能够从文件中读取并作相应处理。
2)创新要求:
采用头文件与源文件分离的方法,多态性的实现多样化(defines an abstract base class Shape, with which it derives five categories: round, square, rectangular, trapezoidal, triangular.
(2) the use of virtual functions to calculate several graphics area.
Effect (3) demonstrate the constructor, copy constructor and destructor call sequence
(4) with a class template implementation.
(5) The use of MFC library to draw and modify graphics, using the basic properties dialog input and output graphics, or the use of the basic properties of operator overloading the input and output graphics on the graphical user interface.
(6) with the file save graphical information, and can be read a file and make the appropriate treatment.
2) Innovation requirements:
Using the method header and source files separate polymorphism diversify
)
- 2020-11-04 14:29:52下载
- 积分:1
-
msvc_at3dx1-2-3
3D秀字程式,可秀出旋轉立體字
使用visual c++編譯(3D-word programming, rotating three-dimensional characters in 2004 and the use of visual c compiler)
- 2006-07-08 01:45:31下载
- 积分:1
-
C#界面分屏展示
C#界面任意分屏,可以平均分屏(即所有屏幕大小相同,按照设定数量平均分配);也可以按照自己的任意想法,把某些屏幕设置得与其他屏幕大小不一样(即可以设置几个大的,几个小的)。
- 2022-03-25 01:30:37下载
- 积分:1