上一页 1 2 3 4 5 6 7 ··· 19 下一页

2010年7月15日

清理vs最近打开的项目

摘要: 在Microsoft Visual Studio 2005里有个清理最近项目的批处理,其内容如下:@echo off @REG Delete HKCU\Software\Microsoft\VisualStudio\8.0\FileMRUList /va /f @REG Delete HKCU\Software\Microsoft\VisualStudio\8.0\ProjectMRUList /... 阅读全文

posted @ 2010-07-15 04:22 Master zhu 阅读(386) 评论(2) 推荐(0) 编辑

win7下安装MyGeneration提示mdac找不到

摘要: 在Windows 7下安装MyGeneration,会出现MDAC组件没有安装的提示,是因为Windows 7所带的MDAC软件版本太高,MyGeneration无法检测到。为了解决这个问题,需要做的是将这个版本检测值进行修改。运行regedit,打开注册表,进入HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DataAccess,将“FullInstall... 阅读全文

posted @ 2010-07-15 04:02 Master zhu 阅读(778) 评论(0) 推荐(0) 编辑

关闭vs实时调试

摘要: VS2005的实时调试有时候觉得挺麻人的,经常导致一些软件不能正常运行~删掉VS2005又舍不得,今天在网上搜索了会终于找到关掉的法子打开注册表开始 —— 运行 输入“regedit”到注册表删除以下2个项目就可以了HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVers... 阅读全文

posted @ 2010-07-15 02:45 Master zhu 阅读(351) 评论(0) 推荐(0) 编辑

2010年7月9日

vs2008打开vs2010项目

摘要: 公司大部分人还在使用VS2008做2.0的项目,想使用VS2010尝尝鲜,但是也用不到4.0的库,想着以后用VS2010做了改动,VS2010仍然可以用,就研究查看了一下.SLN文件,发现VS2008的SLN文件的开头会有如下代码:   Microsoft Visual Studio Solution File, Format Version 10.00  # Visual Studio 2008... 阅读全文

posted @ 2010-07-09 19:41 Master zhu 阅读(421) 评论(0) 推荐(0) 编辑

验证码类

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Service... 阅读全文

posted @ 2010-07-09 11:58 Master zhu 阅读(194) 评论(0) 推荐(0) 编辑

sqlhelper

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Data;usingSystem.Xml;usingSystem.Data.SqlClient;usingSystem.Collections;name... 阅读全文

posted @ 2010-07-09 10:30 Master zhu 阅读(240) 评论(0) 推荐(0) 编辑

sqlhelper调用存储过程[续上]

摘要: public DataSet ExecuteSQLProcedure(string Procedure_name, List<DbParameter> parameters) { DataSet fResult = new DataSet(); DbProviderFactory myDataFactory = DbProviderFactories.GetFactory(myProv... 阅读全文

posted @ 2010-07-09 09:45 Master zhu 阅读(299) 评论(0) 推荐(0) 编辑

2010年7月5日

[sql基础]-带有输入参数的存储过称

摘要: USE Northwind --选择操作哪个数据库GO       --执行CREATE PROCEDURE insert_Products_1 --创建存储过程 ,所创建的存储过程的名字(insert_Products_1) ( @SupplierID_2 int,     --第一个输入的参数 @CategoryID_3 int,     --第二个输入的参数@ProductName_1 nv... 阅读全文

posted @ 2010-07-05 08:57 Master zhu 阅读(276) 评论(0) 推荐(0) 编辑

2010年7月1日

数据库(表结构和数据) 保存为 *.sql文件

摘要: vs2008,vs2010---------------------------------------------------  数据发布向导 --Database Publishing Wizard--------------------------------------------------- 阅读全文

posted @ 2010-07-01 19:48 Master zhu 阅读(318) 评论(0) 推荐(0) 编辑

2010年6月29日

搜索引擎思路

摘要: 1)webclient 读取网页  2)将读取的内容分词(盘古分词)  3)得到分词后的网页索引进Lucene  4)通过索引读取存入的网页数据 阅读全文

posted @ 2010-06-29 17:14 Master zhu 阅读(143) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 19 下一页

导航