摘要: 转自:https://www.cnblogs.com/flyinggod/p/9468612.html 1. 下载 gcc-linaro-arm-linux-gnueabihf-4.9.tar.gz 下载地址参考:http://blog.csdn.net/lg1259156776/article/d 阅读全文
posted @ 2019-11-01 17:10 那是一阵风 阅读(932) 评论(0) 推荐(0)
摘要: --DROP PROCEDURE TableColToRowCREATE PROCEDURE TableColToRow @表名 VARCHAR(80), @哪字段转行 VARCHAR(80), @列转行后字段名 VARCHAR(80) ASBEGIN ------------------------------------------------------------------------------------------- DECLARE @sql VARCHAR(8000) --@表名 VARCHAR(80), --@哪字段转行 VARCHAR(80), ... 阅读全文
posted @ 2014-01-07 22:44 那是一阵风 阅读(587) 评论(0) 推荐(0)
摘要: 最近学习了委托与事件的使用,为了加深了解对事件认识,下面使用委托事件方式,新建个winform,施一个button1,一个textbox1,设置TextBox.Text实例,在vs2010下测试通过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 事件实例{ public... 阅读全文
posted @ 2013-12-20 15:51 那是一阵风 阅读(170) 评论(0) 推荐(0)
摘要: 最近学习了委托的使用,为了加深了解,下面使用委托方式,新建个winform,施一个button1,一个textbox1设置TextBox.Text实例,在vs2010下测试通过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 委托实例{ public partial cl... 阅读全文
posted @ 2013-12-20 15:49 那是一阵风 阅读(279) 评论(0) 推荐(0)