
每日一结
zq32206124
无
展开
-
组合键(Ctrl+E,Ctrl+D)不是命令
该快捷键在VS2008中试格式化文本,但是经常因为不明情况不好用,网上搜索解决办法是 工具--选项--环境--键盘 然后选择重置原创 2010-05-12 12:49:00 · 10613 阅读 · 5 评论 -
自反表的查询
有一个自反表,两个字段id,pId--父ID,无限分级,输入一个ID能得到这个ID下面所有子集的ID;with wsp as(select * from mt_community_seat_tbl where id=38182union allselect a.* from mt_community_seat_tbl a,wsp b where a.seat_Parent_Id=b.id)原创 2010-05-11 19:50:00 · 775 阅读 · 0 评论 -
字符串全排列组合
<br />http://topic.youkuaiyun.com/u/20090217/21/F41ED9F6-F929-451C-A5C9-80D2E408422A.html<br /> staticstring[] m_Data = { "A", "B", "C", "D", "E" }; <br /><br /> staticvoid Main(string[] args)<br /> {<br /> Dictionary<string, int> dic =转载 2010-07-17 08:26:00 · 499 阅读 · 0 评论 -
showModelessDialog打开的子窗体刷新父窗体
//子窗体关闭时刷新父窗体 window.onbeforeunload = function(){ window.dialogArguments.location.reload(); } window.open打开的子窗体,可以用window.opener得到父窗体对象用frame打开的子窗体,可以用windo.parent得到父窗体(可调用父原创 2010-05-28 11:20:00 · 1220 阅读 · 0 评论