02 2013 档案
打开Visio2010开发人员模式
摘要:在默认Visio 2010里面的形状中找不到“联合”、“组合”、“拆分”、“相交”、“剪除”等功能,可进行如下设置:点击visio 左上角的“文件”选项卡,然后点击“选项”,在弹出的“visio 选项”的窗口里面,左边菜单,选取“高级”,然后在右边窗口,下滚至“常规”,然后勾选“以开发人员模式运行”; 阅读全文
posted @ 2013-02-26 16:25 一路前行 阅读(422) 评论(0) 推荐(0)
移除文件关联
摘要:1、打开注册表,定位到:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\在下面找到要删除的文件类型,比如“.css”,将其全部删除。2、进入%LOCALAPPDATA%\文件夹,删除图标缓存文件IconCache.db(隐藏文件,需打开隐藏设置)3、重启任务管理器(或重启电脑) 阅读全文
posted @ 2013-02-19 10:19 一路前行 阅读(277) 评论(0) 推荐(0)
Fuslogvw
摘要:I usually use the Fusion Log Viewer (Fuslogvw.exefrom a Visual Studio command prompt or Fusion Log Viewer from the start menu) - my standard setup is:Open Fusion Log ViewerClicksettingsCheck theEnable custom log pathcheckboxEnter the location you want logs to get written to, for example,c:\FusionLog 阅读全文
posted @ 2013-02-18 16:37 一路前行 阅读(363) 评论(0) 推荐(0)
pycharm 隐藏margin line
摘要:在设置中,搜索 margin,找到IDE Settings->Eidtor->Appearance下的Show right margin(configed in Code Style options),将其取消即可。 阅读全文
posted @ 2013-02-05 13:19 一路前行 阅读(505) 评论(0) 推荐(0)
js获取url参数值
摘要://获取地址栏参数functiongetQueryString(name){varreg=newRegExp("(^|&)"+name+"=([^&]*)(&|$)","i");varr=window.location.search.substr(1).match(reg);if(r!=null)returnunescape(r[2]);returnnull;}用法:alert(GetQueryString("参数名1"));alert(GetQueryString("参数名2&q 阅读全文
posted @ 2013-02-01 12:26 一路前行 阅读(218) 评论(0) 推荐(0)