04 2013 档案
BugFree3.0.2的安装详解
摘要:Bugfree3.0.2安装与配置配置环境OS:win7/XPxampp 版本:xampp-win32-1.7.7bugfree版本:v3.0.2xampp简介xampp是一款跨平台的集成 apache + mysql + php环境,是的配置AMP服务器变得简单轻松,支持windows,solaris,MacOSX,linux。本文以win7 32位系统为例software 准备在http://www.apachefriends.org/zh_cn/xampp-windows.html 上下载xampp安装步骤:首先安装前需要确定系统中是否安装并启动了IIS,如果没有,请先安装或先启动.II 阅读全文
posted @ 2013-04-26 11:38 小黑混北京 阅读(17390) 评论(1) 推荐(0)
【转载】Visual Studio 2010- IntelliTrace(智能跟踪)[优化c盘]
摘要:用vs2010后发现我的c盘变得越来越小了,刚开始通过优化工具清理c盘,但是无论怎么做都不能将c的内存有效提升,之后一个一个目录的查找之后才知道有个文件夹C:/ProgramData/Microsoft Visual Studio/10.0/TraceDebugging很占内存,从网上查了查知道这是什么了(具体信息可从这里http://www.cnblogs.com/shanyou/archive/2010/05/09/1730956.html 了解),其实对于大多数编程的人员来说,其实不需要它的,所以可以直接删了就行了。然后我讲一下具体步骤:打开vs2010找到工具----->选项-- 阅读全文
posted @ 2013-04-11 15:43 小黑混北京 阅读(215) 评论(0) 推荐(0)
C#调用VC++.net托管库程序集DLL
摘要:Could not load file or assembly '... ...' or one of its dependencies. 由于应用程序配置不正确,应用程序未能启动 ... 两个工程分别是 .net2005下的 C# 和 C++ , C++ 工程使用 C++/CLI 封装了几个功能函数并在 C# 工程中加载使用封装类。在本地运行正常,但发布到其他机器上却出现异常对话框:“ Could not load file or assembly '... ...' or one of its dependencies. 由于应用程序配置不正确,应用程序未能 阅读全文
posted @ 2013-04-07 11:25 小黑混北京 阅读(505) 评论(0) 推荐(0)
LINQ to SQL with NOLOCK
摘要:If your project uses LINQ to SQL for your database access, you may want to use NOLOCK to set the isolation level to ReadUncommitted on your Select statements. The problem is that LINQ does not understand query hints. The way this works with LINQ is by running your Select statements under the context 阅读全文
posted @ 2013-04-07 11:07 小黑混北京 阅读(1612) 评论(0) 推荐(0)