摘要:1.一般的做法:参考:https://developers.google.com/eclipse/docs/install-eclipse-4.32. 因为 上面的做法一直没有成功,改为下载离线包安装对于 Eclipse 4.3的离线包,可以从这里下载:http://download.csdn.net/detail/u011029071/5968763离线包安装方法:Help->Install New Software点WorkWith最右边的Add..Name:随便起个Location,选择Archive,这样就可以选择zip包了Plugins组件一定要装,装了就可以采用host模式调 阅读全文
VC++ 2013 开发windows窗体程序
2013-12-29 22:34 by 每天努力一点点, 618 阅读, 0 推荐, 收藏,
摘要:开发工具版本:Visual Studio Express 2013 for Windows Desktop1. 新建Visual C++下面的“Win32 Project”2. 项目属性中,在general下面,Common Language Runtime Support选择"Common Language Runtime Support (/clr)"3. 添加新文件,类型选择“Windows Form”4. 修改项目启动类1)头部加入#include "xx.h" //这是增加的“Windows Form”对应的文件名using namespac. 阅读全文
GitHub使用说明
2013-12-20 22:28 by 每天努力一点点, 143 阅读, 0 推荐, 收藏,
摘要:登陆https://github.com/,并注册账号从如下地址下载windows客户端:https://msysgit.googlecode.com/files/Git-1.8.4-preview20130916.exe安装后,使用 Git GUI界面,选择克隆已有的版本库,然后在“Source Location”中输入Git库地址,如“https://github.com/jerrymousecn/myip”然后把文件拷贝到这个克隆库对应的本地目录,依次选择“重新扫描”,“缓存改动”,“签名”,“提交”,“上传”在后面弹出的窗口中需要输入GitHub的用户名和密码注:因使用github不是 阅读全文
c# 发送邮件
2013-12-14 23:16 by 每天努力一点点, 170 阅读, 0 推荐, 收藏,
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Net.Mail;namespace WindowsFormsApplication1{ public partial class Form1 : Form ... 阅读全文
c# aes 加密解密
2013-12-14 23:11 by 每天努力一点点, 249 阅读, 0 推荐, 收藏,
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Security.Cryptography;namespace WindowsFormsApplication1{ public partial class ... 阅读全文
sourceforge软件下载方式
2013-10-24 22:32 by 每天努力一点点, 560 阅读, 0 推荐, 收藏,
摘要:访问http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/根据软件名称在文件列表中查找 阅读全文
共享软件开发经验分享
2013-06-15 15:01 by 每天努力一点点, 523 阅读, 0 推荐, 收藏,
摘要:一、构思阶段这个比较关键,要有创意,纯粹抄袭模仿,很难成功。二、开发阶段1.开发工具a)C++Builder2009b)VisualStudio2012Express(免费)2.内存泄漏检查方法a)C++Builder2009i.打开Project>>Optionsii.C++Compiler>>Debugging中,将EnableCodeguard设置为Trueiii.然后执行运行程序,等程序结束时,在IDE主界面下面就会出现内存泄漏的相关信息b)VisualStudio2012Expressi.在程序开始包含如下定义:#ifdef_DEBUG#defineDEBUG 阅读全文
visual c++ 2012 内存泄漏检测方法
2013-05-30 22:02 by 每天努力一点点, 169 阅读, 0 推荐, 收藏,
摘要:转自:http://hi.baidu.com/ufownl/item/f15e8ad6df7da1cf1a72b4f21.程序开始包含如下定义:#ifdef _DEBUG#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)#else#define DEBUG_CLIENTBLOCK#endif // _DEBUG#define _CRTDBG_MAP_ALLOC#include #include #ifdef _DEBUG#define new DEBUG_CLIENTBLOCK#endif // _DEBUG2.程 阅读全文
visual studio 2012 知识笔记
2013-05-28 22:26 by 每天努力一点点, 125 阅读, 0 推荐, 收藏,
摘要:一、生成exe方法1.版本选择:2012 express,打上update 2补丁2.进入项目属性菜单,从下拉框中选择release;3.在项目属性中,在general下,platform toolset选择vs2012 windows xp;4.linker>debugging,generate debug info选择否;5.linker>general,enable incremental linking 选择否6.c/c++,runtime library选/MT二、使用gtest进行c++ 单元测试从下面链接下载vs2012编译好的文件http://download.cs 阅读全文
autoit 计算程序运行时间
2013-05-21 22:30 by 每天努力一点点, 544 阅读, 0 推荐, 收藏,
摘要:Local $begin = TimerInit()Sleep(3000)Local $dif = TimerDiff($begin)/1000MsgBox(0, "Time Difference", $dif) 阅读全文