上一页 1 ··· 4 5 6 7 8
  2009年4月29日
摘要: 使用 DataTable.Columns.Contains方法可以判断某个列名是否存在于某个DataTable中 DataTable t = new DataTable(); DataColumn col = new DataColumn("aaa"); t.Columns.Add(col); col = new DataColumn("bbb"); t.Columns.Add(col); col... 阅读全文
posted @ 2009-04-29 14:20 蔡春升 阅读(1198) 评论(1) 推荐(0) 编辑
摘要: #pragma warning disable 1699 [assembly:AssemblyKeyFile("MyKey.snk")] #pragma warning restore 1699 阅读全文
posted @ 2009-04-29 14:17 蔡春升 阅读(178) 评论(0) 推荐(0) 编辑
摘要: try this one run cmd vs 2008 provided. go to vs 2008 location eg: C:\\Program Files\Microsoft Visual Studio 9.0\Common7\IDE devenv /log c:"ActivityLog.xsl open related solution. build it. 阅读全文
posted @ 2009-04-29 14:16 蔡春升 阅读(219) 评论(0) 推荐(0) 编辑
  2009年1月22日
摘要: cnblog和codeproject是我最喜欢上的两个.net网站,两者给我的感受也是大不同 在cnblog上我体会最深的是可以学到很多新技术的介绍,以及通过案例来介绍计算机原理,本人大学的基础没打好,很感谢cnblog给我提供了这么好的机会能再复习一下。 codeproject上也有很多新技术的介绍,不过提供的案例比较完整,操作性比较强。可能是我本人比较喜欢在实践中学习,在这方面更喜欢code... 阅读全文
posted @ 2009-01-22 23:05 蔡春升 阅读(1065) 评论(2) 推荐(0) 编辑
  2009年1月20日
摘要: http://www.harding.edu/fmccown/vbnet_csharp_comparison.html add-in: If Not rs.EOF Then rs.MoveFirst() End If While Not rs.EOF End While 阅读全文
posted @ 2009-01-20 10:19 蔡春升 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8