随笔分类 -  debugging experience

1
系统调试经验积累
摘要:由于自己的电脑是win7(64位)的,系统安装TortoiseSVN之后,其他的功能都能正常的使用,但是就是文件夹或文件夹的左下角就是不显示图 标,这个问题前一段时间就遇到了(那个时候没找到合适的答案),这段时间重新学习svn 的使用,这个问题没解决,不舒服,没有了图标,就像打仗没有了旗帜一样: ... 阅读全文
posted @ 2015-04-17 14:57 sunnyboy 阅读(288) 评论(0) 推荐(0)
摘要:01、SVN Checkout(SVN取出)点击SVN Checkout,弹出检出提示框,在URL of repository输入框中输入服务器仓库地址,在Checkoutdirectory输入框中输入本地工作拷贝的路径,点击确定,即可检出服务器上的配置库。02、SVN Update(SVN更新)如... 阅读全文
posted @ 2015-04-17 14:54 sunnyboy 阅读(369) 评论(0) 推荐(0)
摘要:Q:How to open .ccproj projects types in VS2010, ccproj file type is a Cloud project i suppose.Please provide inputs.A:Download and install Windows Azu... 阅读全文
posted @ 2015-03-11 20:50 sunnyboy 阅读(274) 评论(0) 推荐(0)
摘要:新装系统Win7_X64,将SATA Mode Selection改为AHCI后总是重启,baidu参考:SATA的硬盘就选AHCI(全称应该是SATA AHCI),AHCI可以提升硬盘的读写速度原来的并口硬盘(宽线那种)就选IDE(compatibility)为什么安装XP时需要首先将BIOS中的... 阅读全文
posted @ 2015-01-17 13:56 sunnyboy 阅读(9908) 评论(0) 推荐(0)
摘要:反汇编一个dll类库,导出的项目会报出很多bug,其中主要的就是“无法显式调用运算符或访问器”这个错误,看了一下,发现问题是在调用属性的时候,都 变成了方法,例如:pivotPoint.set_X(0.5);本来是对pivotPoint这个点的x坐标赋值,可是反汇编器把它解释为调用 set_X()的... 阅读全文
posted @ 2014-05-14 13:18 sunnyboy 阅读(439) 评论(0) 推荐(0)
摘要:今天用Nuget下一个程序包时,发现Nuget挂了:未能解析此远程名称:'nuget.org'。第一反应就是方校长抖威风了,挂个代理上 http://nuget.org 试了下,果然好好的。用命令nslookup nuget.org试了下,域名无法解析;便用google的DNS重新解析了下nsloo... 阅读全文
posted @ 2014-05-08 10:10 sunnyboy 阅读(539) 评论(0) 推荐(0)
摘要:baidu:没什么用,这个主要是针对低版本的浏览器是html的注释标签,高版本的浏览器会识别标签是样式表,并忽略里面的html注释标签,会解析它,低版本的浏览器有的不识别标签,就会把样式表的内容显示在页面上,所以加上注释标签,这样就算低版本的浏览器不识别标签,也不会把里面的内容显示在页面上。 阅读全文
posted @ 2014-04-18 21:51 sunnyboy 阅读(456) 评论(0) 推荐(0)
摘要:关于网页中第一行代码我最近编码一直用EDITPLUS,经理给了一JQuery的问题,让给解决了。弄了一天也没有找到什么原因,我在网上下了一些最后的代码,自己重写了一个也好用,可是经理给的那个了没有什么错呀!为什么在IE6下好使,到IE7下不好用了呢?我一直了没有发现,结果我同事在弄的时候发现了,原来... 阅读全文
posted @ 2014-04-18 21:09 sunnyboy 阅读(3814) 评论(0) 推荐(0)
摘要:System.Web”中不存在类型或命名空间名称script /找不到System.Web.Extensions.dll引用添加引用就行了...“添加引用→.Net→System.Web.Entensions.dll”;然后再项目文件中再“using System.Web.Script.Serial... 阅读全文
posted @ 2014-04-18 09:02 sunnyboy 阅读(1467) 评论(0) 推荐(0)
摘要:请问后台不识别ASPX中的控件,怎么解决 这个程序是在网上下载的C# code<asp:DataGrid runat="server" ID="dgList1" HorizontalAlign="Center" AlternatingItemStyle-BackColor="#eeeeee" Css... 阅读全文
posted @ 2014-04-18 08:59 sunnyboy 阅读(1240) 评论(1) 推荐(0)
摘要:The standard windows keyboard shortcuts for expanding and collapsing treeviews are: Numeric Keypad *: Expands everything under the current selection Numeric Keypad +: Expands the current selection Numeric Keypad -: Collapses the current selection. RIGHT ARROW: Expands the current selection if it i.. 阅读全文
posted @ 2014-04-11 21:56 sunnyboy 阅读(208) 评论(0) 推荐(0)
摘要:programdata TraceDebugging 阅读全文
posted @ 2013-05-10 11:05 sunnyboy 阅读(176) 评论(0) 推荐(0)
摘要:Q:VS2010 Unit test “Pending” and the test cannot be completedI'm using VS2010 (with windows 7).Every time I try to run a unit test it stays on "Pending" and the test cannot be completed.I tried to follow this msdn instructions.I tried debugging test method (test view/debug selection), 阅读全文
posted @ 2013-05-10 10:48 sunnyboy 阅读(464) 评论(0) 推荐(0)
摘要:IntroductionData bindings is one of the most widely used features of WPF. However, debugging data bindings is not as well known, which I'll attempt to rectify with this article.There are essentially two methods we can use to debug our data bindings, when they do not throw an exception.Using IVal 阅读全文
posted @ 2012-10-31 17:20 sunnyboy 阅读(489) 评论(0) 推荐(0)
摘要:The WPF and Silverlight platforms use late bound data binding resolution for bindings in XAML files. This feature allows a DataContext to be set at run-time and the objects within that DataContext to resolve their property bindings then. This late binding enables cool features like DataTemplates, co 阅读全文
posted @ 2012-10-29 20:44 sunnyboy 阅读(472) 评论(0) 推荐(0)
摘要:Lesson01 Call StackLesson02 Breakpoints in SubExpressionslesson03 BreakPoint HitCountLesson04 Debugging ThreadsLesson05 Using TracePointsLesson06 Watch and Immediate Windows...from:http://blogs.msdn.com/b/brunoterkaly/ 阅读全文
posted @ 2012-10-28 17:47 sunnyboy 阅读(178) 评论(0) 推荐(0)
摘要:C# Tip: Monitoring Clipboard Activity in C#Welcome to this week's installment of .NET Tips & Techniques! Each week, award-winning Architect and Lead Programmer Tom Archer demonstrates how to perform a practical .NET programming task using either C# or Managed C++ Extensions.My MFC book Visua 阅读全文
posted @ 2012-07-13 08:50 sunnyboy 阅读(462) 评论(0) 推荐(0)
摘要:青葱岁月 现在很流行一个词,“青葱岁月”,有这样四种很类似的解释: 1、最重要的一点,山西绝大部分方言中“chun的发音就类似与chong”所以说这个词条来自于山西人的口音,不完全是谐音,是口音。 2、“就是指处于成长期间的年轻,用绿色代表年轻,说明不够成熟! ” 3、“字面意思就是像青色的葱一样的岁月。指的是年青时代。” 尝试解释一下,青春岁月,是一种时间、生理上的表述,比较正统,比较学术,比较理智。青葱岁月既然涉及到了葱,就一定跟它有关系。青葱岁月,是一个更形象化的用词,表明人生象青葱一样,虽不成熟却已有味道,辛辣、刺激,但这种辛辣没有岁月的磨砺肯定不是真正的辣、真正的痛楚,多少... 阅读全文
posted @ 2011-08-25 08:51 sunnyboy 阅读(1847) 评论(0) 推荐(0)
摘要:由于Asp.net程序是默认配置,所以Web.Config文件中关于Session的设定如下: <sessionState mode= "InProc " stateConnectionString= "tcpip=127.0.0.1:42424 " sqlConnectionString= "data source=127.0.0.1;Trusted_Connection=yes " cookieless= "true " timeout= "20 "/> 我们会发现session 阅读全文
posted @ 2011-07-31 18:23 sunnyboy 阅读(5105) 评论(0) 推荐(0)
摘要:把net framework 2.0的网站程序挪到net framework 3.5的环境中时,可能会遇到这样的错误提示:未能加载文件或程序集 ‘System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35′,怎么解决呢? 将程序升级为 3.5 即可解决。用VS2008打开项目文件,会提示你升级,按照提示一步一步操作即可。 另外如果当前环境就是 .NET Framework 2.0,仍然有这种提示,那么可以到 http://www.asp.net/ajax/downlo. 阅读全文
posted @ 2011-07-08 15:56 sunnyboy 阅读(1570) 评论(0) 推荐(0)

1