12 2011 档案

摘要:public delegate void OutDelegate(string text); public void OutText(string text) { if (listBox1.InvokeRequired) { OutDelegate outdelegate = new OutDelegate(OutText); this.BeginInvoke(outdelegate, new object[] { text }); ... 阅读全文
posted @ 2011-12-15 10:43 bule 阅读(384) 评论(0) 推荐(0)
摘要:在cmd上输入C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 aspnet_regiis.exe i 阅读全文
posted @ 2011-12-09 17:16 bule 阅读(178) 评论(0) 推荐(0)