-
Cinfodlg
sock配置学习(sock configuration learning)
- 2004-09-29 10:18:16下载
- 积分:1
-
12864实现多级菜单
说明: 12864实现多级菜单,一共有两级菜单,根据不同的菜单项实现不同的功能,(12864 implements multi-level menus, which have two levels of menus. It implements different functions according to different menu items.)
- 2020-06-24 08:40:01下载
- 积分:1
-
clock
数字钟 ATMEGA16 定时 跑秒 倒计时(Digital clock ATMEGA16 timing ran second countdown)
- 2012-09-25 16:28:14下载
- 积分:1
-
有用的
推荐大家一个靠谱的论文检测平台。重复的部分有详细出处以及具体修改意见,能直接在文章上做修改,全部改完一键下载就搞定了。怕麻烦的话,还能用它自带的降重功能。哦对了,他们现在正在做毕业季活动, 赠送很多免费字数,可以说是十分划算了!地址是:http://www.paperpass.com/
- 2023-01-12 02:25:05下载
- 积分:1
-
dtadlock-real
一份是点对点通讯聊天的软件代码,vevr good(Is a point to point communication chat software code, vevr good)
- 2017-06-21 23:21:51下载
- 积分:1
-
用HtmlParser 实现asp.net采集网分析网页,可直接用作采集
主要实现了通过HtmlParser 实现网页源文件的抓取以及分析,示例中包含了常用的几种操作,更多内容须大家一起完善,虽然本项目是用winform编写,但是其中的代码可以直接copy到web项目中 使用(已做过测试)。 asp.net采集网分析网页用它即可。 另注:需要添加这些引用(项目文件中已包含Winista.HtmlParser.dll的引用) using Winista.Text.HtmlParser;using Winista.Text.HtmlParser.Filters;using Winista.Text.HtmlParser.Util;using Winista.Text.HtmlParser.Tags;
- 2021-05-14 11:30:02下载
- 积分:1
-
CCS 64点FFT实现 用于DSP实验 FFT
CCS 64点FFT实现 用于DSP实验(CCS 64-point FFT for DSP experimental realization)
- 2020-06-28 11:00:01下载
- 积分:1
-
CAN
飞思卡尔CAN扩展帧通信,Can盒发送数据,单片机接受并返回数据(The Carle CAN extended frame communication, Can box to send data, the microcontroller to accept and return data
)
- 2020-09-21 00:47:56下载
- 积分:1
-
关于datagridview控件的简单例子,更容易理解一些
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;namespace DataGridViewSample{ public partial class Form1 : Form { public static List Tests = new List(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.dataGridView1.DataSource = Tests; } private void button1_Click(object sender, EventArgs e) { frmAdd form = new frmAdd(null); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } private void button2_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows != null) { frmAdd form = new frmAdd(new Test( Convert.ToInt32(this.dataGridView1.SelectedRows[0].Cells[0].Value), Convert.ToDecimal(this.dataGridView1.SelectedRows[0].Cells[1].Value), Convert.ToDateTime(this.dataGridView1.SelectedRows[0].Cells[2].Value), this.dataGridView1.SelectedRows[0].Cells[3].Value.ToString())); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } } private void button3_Click(object sender, EventArgs e) { //使用前面示例中的代码,用DataGridView或者List来做导出都是可以的 } } public class Test { public Test(int id, decimal voltage, DateTime record, string remark) { ID = id; Voltage = voltage; Record = record; Remark = remark; } public int ID { get; set; } public decimal Voltage { get; set; } public DateTime Record { get; set; } public string Remark { get; set; } }}
- 2015-06-11下载
- 积分:1
-
ADC
说明: STM32F4的ADC的dma功能,支持定时触发采集(ADC DMA timing trigger acquisition based on stm32f4)
- 2021-01-11 14:47:17下载
- 积分:1