摘要: 因为俺闺女属牛的。 阅读全文
posted @ 2010-07-01 17:07 俺是个写程序的 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 下载地址: http://research.microsoft.com/en-us/downloads/d36340fb-4d3c-4ddd-bf5b-1db25d03713d/default.aspx 安装: 1、非win8或以上系统,直接安装 2、win8系统,需要通过运行管理员权限的控制台,通 阅读全文
posted @ 2016-03-17 10:58 俺是个写程序的 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 首先声明,我是一个vc的初学者,一直认为vc是一件很麻烦的事儿。 在今年3月份,突发奇想给自己找麻烦,学习vc编程,其实我到现在还没弄明白什么是c\c++\vc\vc++呢。 呵呵。 下边是我对 dll 导出函数的一点学习心得 初始,看了一篇博文: http://blog.csdn.net/g710 阅读全文
posted @ 2016-03-16 16:30 俺是个写程序的 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 在链接标志中加入参数: /SUBSYSTEM:WINDOWS,"5.01" 在ide环境下: 项目属性-常规-平台工具集-Visual Studio 2013 - Windows XP (v120_xp) 阅读全文
posted @ 2016-03-16 14:27 俺是个写程序的 阅读(242) 评论(0) 推荐(0) 编辑
摘要: . ctrl + shift + n: 打开工程中的文件(类似于eclipse中的ctrl+shift+R),目的是打开当前工程下任意目录的文件。 . ctrl + j: 输出模板 . ctrl + b: 跳到变量申明处 . ctrl + alt + T: 围绕包裹代码(包括zencoding的Wr 阅读全文
posted @ 2016-03-04 10:44 俺是个写程序的 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>仿照taobao左侧菜单----案例</title> 6 <style type="text/css"> 7 #top,#content,# 阅读全文
posted @ 2016-03-04 10:34 俺是个写程序的 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 [DllImport("user32.dll")] 2 private static extern int SetCursorPos(int x, int y); 3 4 public enum MouseEventFlags 5 { 6 Move = 0x0001, 7 LeftDown = 阅读全文
posted @ 2016-03-04 10:30 俺是个写程序的 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 联合两个索引查询,已解决: IndexSearcher[] searchers = new IndexSearcher[2];   searchers[0] = new IndexSearcher(m_indexpath); searchers[1] = new IndexSearcher(m_outindexpath); MultiSearcher multiSearcher = new M... 阅读全文
posted @ 2010-07-01 17:12 俺是个写程序的 阅读(243) 评论(0) 推荐(0) 编辑
摘要: Lucene支持对搜索条件的排序,一个条件或者多个条件,以及是升序还是降序,部分代码如下:string INDEX_STORE_PATH = Server.MapPath("index");//INDEX_STORE_PATH 为索引存储目录string keyword = TextBox2.Text; //搜索内容Hits myhit = null; IndexSearcher mysea = ... 阅读全文
posted @ 2010-07-01 17:11 俺是个写程序的 阅读(401) 评论(0) 推荐(0) 编辑