-
145
一个很好类子来说明类模板的使用,可以比较明了类模板的使用方法,最好进行单步调试(use of class template )
- 2013-08-30 17:17:58下载
- 积分:1
-
MPU6000
利用SPI总线读取MPU6000的值,传感器数据准备好后产生外部中断进而触发STM32去读取(The SPI bus read MPU6000 value, the sensor data is ready and then generate an external interrupt trigger STM32 to read)
- 2020-11-23 00:19:35下载
- 积分:1
-
C#读取PPT
用C#代码实现识别并读取PPT,然后可以自定义一些功能,还可以将PPT与其他软件集合,生成自己想要的软件
- 2023-05-29 17:00:03下载
- 积分:1
-
测试链接并显示查询数据
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;//Download by http://down.liehuo.netusing System.Data.SqlClient;namespace Case05_12{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { //生成连接数据库字符串 string ConStr = "data source=.;database=ljp;uid=sa;pwd=123"; //定义SqlConnection对象实例 SqlConnection con = new SqlConnection(ConStr); //定义Select查询语句 string Sql = "select*from biaoge"; SqlDataAdapter ada = new SqlDataAdapter(Sql, con); DataSet ds = new DataSet(); //定义DataSet对象实例 ada.Fill(ds); //连接数据表格,显示数据 this.dataGridView1.DataSource = ds.Tables[0].DefaultView; } catch { return; } } private void button2_Click(object sender, EventArgs e) { this.Close(); Application.Exit(); } }}
- 2014-10-02下载
- 积分:1
-
RTC_Workaround
MSP430x54x 实时时钟示例代码(MSP430x54x RTC sample code)
- 2009-06-13 20:05:26下载
- 积分:1
-
独立看门狗实验
说明: stm32看门狗实验,独立看门狗实验。应用stm32f103rct6(stm32watchdog experiment)
- 2020-03-05 10:04:28下载
- 积分:1
-
54886756
使用树形控件,VC++编程精选学习源码,很好的参考资料。(Use the tree controls, select learning VC++ programming source code, a good reference.)
- 2013-11-20 12:17:31下载
- 积分:1
-
056457
VC 实现刷新桌面实例,精选学习源码,很好的参考资料。(VC to refresh the desktop case, select learning source code, a good reference.)
- 2013-12-25 11:02:38下载
- 积分:1
-
ieee68
说明: 基于MATLAB psat的双机六节点系统(IEEE6_bus,can run well)
- 2020-04-15 18:06:15下载
- 积分:1
-
exportlisttoexcel
一个简单好用小程序,实现在VC对话框程序中,将列表控件中内容导入excel表,方便查看、打印等功能!(An easy to use applet import excel table in VC dialog box procedure, the contents of the list control for easy viewing, printing and other functions)
- 2012-05-31 16:59:59下载
- 积分:1