博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2011年5月20日

摘要: private void lv_MouseUp(object sender, MouseEventArgs e) { ListViewItem item = lv.GetItemAt(e.X, e.Y); if (item != null) { System.Windows.Forms.ListViewItem.ListViewSubItem subitem = item.GetSubItemAt(e.X, e.Y); if (subitem != null) strColName = (lv.Columns[item.SubItems.IndexOf(subitem)].Text); } } 阅读全文

posted @ 2011-05-20 11:58 codingsilence 阅读(439) 评论(0) 推荐(0) 编辑

摘要: string str = null;using(StreamReader sr = new StreamReader("E/1.txt",System.Text.Encoding.UTF8)){ str = sr.ReadLine();} 阅读全文

posted @ 2011-05-20 10:50 codingsilence 阅读(150) 评论(0) 推荐(0) 编辑

摘要: 一.Hql 返回IList,组合成DataTable string hql =" from Item I left join I.Products P left join P.FailureModes F " +" where P.ProductName=?"; Castle.ActiveRecord.Queries.SimpleQuery query = new Castle.ActiveRecord.Queries.SimpleQuery(typeof(Item),typeof(IList), hql, "aa"); IList 阅读全文

posted @ 2011-05-20 07:56 codingsilence 阅读(856) 评论(0) 推荐(0) 编辑