风泥

导航

上一页 1 2 3 4 5 6 ··· 9 下一页

2017年5月19日 #

Filezilla-client界面结构

摘要: 目录结构表示了Filezilla-client界面控件的基本关系 CFilezillainterface接口类,将filezilla封装成动态库,提供相应接口供外部程序调用CFileZillaAppfilezilla实例CMainFramefilezilla主窗口CM... 阅读全文

posted @ 2017-05-19 13:42 风泥 阅读(355) 评论(0) 推荐(0) 编辑

MardDown学习笔记

摘要: MarkDown学习笔记标题 [TOC "float:left"] 快捷键:ctrl + shit + T,表示标题显示在左边Haroopad只支持到6级标题表格 示例:":---:"居中对齐,"---:"右对齐 name age gender money ... 阅读全文

posted @ 2017-05-19 13:40 风泥 阅读(97) 评论(0) 推荐(0) 编辑

2017年4月27日 #

qtservice创建服务程序

摘要: qtservice创建Windows服务程序qtservice下载地址:https://github.com/qtproject/qt-solutions/tree/master/qtserviceqtservice目录下有examples供学习我在编译了server... 阅读全文

posted @ 2017-04-27 18:39 风泥 阅读(1122) 评论(0) 推荐(0) 编辑

2017年3月29日 #

常用工具下载

摘要: 常用工具下载常用工具下载1解压缩工具2MarkDown文本编辑器3屏幕录制工具1、解压缩工具7-zip, 开源解压工具,跨平台,分32位和64位 下载地址:http://www.7-zip.org/download.html2、MarkDown文本编辑器Haroopa... 阅读全文

posted @ 2017-03-29 17:47 风泥 阅读(96) 评论(0) 推荐(0) 编辑

2017年2月28日 #

设置开机启动

摘要: Qt实现:bool Util::boot_program(const QString &filePath, bool bEnable){ QFileInfo fileInfo(filePath); if(!fileInfo.exists()) { ... 阅读全文

posted @ 2017-02-28 21:18 风泥 阅读(112) 评论(0) 推荐(0) 编辑

设置Qt依赖库路径

摘要: 在Qt5.0版本以后,由于框架的改动,打包的程序安装到其它电脑会提示找不到Qt库的路径, 这时候需要注册这些库,如下:void Util::registerPluginsDir(QDir &exeDir){ QString pluginsRelPath = "q... 阅读全文

posted @ 2017-02-28 14:42 风泥 阅读(932) 评论(0) 推荐(0) 编辑

2017年2月17日 #

Qt 代码中添加中文字符

摘要: 问题描述:由于项目需要,有时候需要在CPP文件中添加中文字符(特殊字符),但是编译的时候会报错。解决方法:将CPP文件的编码格式改成UTF-BOM就可以。例如:QString::fromLocal8Bit("你好")。 一定要使用fromLocal8Bit()不然显示... 阅读全文

posted @ 2017-02-17 09:40 风泥 阅读(242) 评论(0) 推荐(0) 编辑

2017年1月4日 #

命令行脚本修改IP

摘要: 1. 设置静态IPnetsh interface ip set address "本地连接" static 192.168.1.84 255.255.255.0 192.168.1.3netsh interface ip set dns "本地连接" static 1... 阅读全文

posted @ 2017-01-04 10:31 风泥 阅读(115) 评论(0) 推荐(0) 编辑

2016年12月22日 #

Python同目录文件批量重命名

摘要: import os, os.path'''**************************************************************************根据src_dir的文件重命名dest_dir目录下的文件, src_dir与... 阅读全文

posted @ 2016-12-22 16:27 风泥 阅读(231) 评论(0) 推荐(0) 编辑

2016年10月19日 #

获取下一天日期

摘要: //获取当月有多少天, bLeapYear判断是否闰年 int getDaysInMonth(int month, bool bLeapYear) { switch(month) { case 1: ... 阅读全文

posted @ 2016-10-19 10:47 风泥 阅读(117) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 9 下一页