摘要: http://apps.hi.baidu.com/share/detail/409287【转】svn教程一、准备工作1、获取 Subversion 服务器程序到官方网站(http://subversion.tigris.org/)下载最新的服务器安装程序。目前最新的是1.5.1版本,具体下载地址在:http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100&expandFolder=8100&folderID=91 ,注意找for apache 2.2.x 版本的。2、获取 TortoiseSV 阅读全文
posted @ 2012-05-03 16:03 Billy.rao 阅读(256) 评论(0) 推荐(0)
摘要: 把需要加载后获得焦点的控件的tabindex值改为0 阅读全文
posted @ 2012-05-03 15:33 Billy.rao 阅读(205) 评论(0) 推荐(0)
摘要: http://zhidao.baidu.com/question/329266483.html2种办法,都得修改函数。1是加参数,public bool FunctionTest(string& s){ 修改字符串; return false;}2是重新定义返回值,class boolWithString{ bool b; string s;};public boolWithString FunctionTest(string& s){ return boolWithString(flase,string(""));}我... 阅读全文
posted @ 2012-05-03 15:00 Billy.rao 阅读(1875) 评论(1) 推荐(0)