note-删除Visual Studio recent Projects list
摘要:HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\X.X\ProjectMRUList
阅读全文
posted @
2009-10-27 14:15
qinghao
阅读(213)
推荐(1)
coders at work
摘要:在这(http://www.codinghorror.com/blog/archives/001305.html)看到Coders at Work 这本书. 下面是书里面采访的牛人们: Frances Allen: Pioneer in optimizing compilers, first woman to win the Turing Award (2006) and first femal...
阅读全文
posted @
2009-10-22 14:17
qinghao
阅读(320)
推荐(0)
note-GridView 的HeaderText 中换行
摘要:Protected Sub GridView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) _ Handles GridView1.DataBound Dim gv As GridView = CType(sender, GridView) Dim c As TableCell For Each c In gv.He...
阅读全文
posted @
2009-10-15 16:16
qinghao
阅读(1480)
推荐(0)
note-.Net DataReaderToDataTable
摘要:dt.Load(dr) //ADO.net 2.0 //non 2.0dr.GetSchemaTable() 得到这个SchemaTable 后,自己手工转换: 。。。 dtSchema = dr.GetSchemaTable() For i = 0 To dtSchema.Rows.Count - 1 dtReturn.Columns.Add(dtSchema.Rows(i).Item(0))...
阅读全文
posted @
2009-10-07 16:30
qinghao
阅读(139)
推荐(0)