01 2014 档案

摘要:使用ApplicationContextstatic class Program { internal static ApplicationContext context = new ApplicationContext(new Form1()); /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); ... 阅读全文
posted @ 2014-01-18 14:05 UCanBeFree 阅读(106) 评论(0) 推荐(0) 编辑
摘要://----------------线程传多个参数------------------- private void ShowName(object li){ List list= li as List; if (list != null) { foreach (string l in list) { MessageBox.Show(l); } } } private void button1_Click(object se... 阅读全文
posted @ 2014-01-17 15:43 UCanBeFree 阅读(126) 评论(0) 推荐(0) 编辑
摘要:in 和exists的用法差不多.但是in条件不能有外部条件,如:select *from rp_001 A where exists (select years from RepOrt B where A.repid=20)select *From rp_001 A join RepOrt on A.repid=20;exists 不会筛选出report的数据而join会与report自然连接。 阅读全文
posted @ 2014-01-09 16:49 UCanBeFree 阅读(287) 评论(0) 推荐(0) 编辑
摘要:加载解析xml文件:from xml.dom import minidomdoc=minidom.parse("Book.xml") 阅读全文
posted @ 2014-01-09 11:58 UCanBeFree 阅读(373) 评论(0) 推荐(0) 编辑
摘要:public delegate void MyInvoke( ); public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(correctfunc)); t... 阅读全文
posted @ 2014-01-02 17:12 UCanBeFree 阅读(153) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示