ddd Read More
posted @ 2016-06-29 05:42 findumars Views(658) Comments(0) Diggs(0)
官网:http://www.openssl.org/ 得到源码: git clone https://github.com/openssl/openssl 一、用vc编译器编译: 1、下载nasm: http://www.nasm.us/ 2、下载perl: http://www.perl.org/ Read More
posted @ 2016-06-29 05:42 findumars Views(1682) Comments(0) Diggs(0)
MinGW:c -> o gcc -c a.cc -> exe gcc a.c libs.o -o a.exe (从主程序a.c,附加libs,生成a.exe)o -> exe gcc a.o b.o ... -o main.exec -> dll,def,a gcc a.c -shared -o Read More
posted @ 2016-06-29 05:41 findumars Views(1802) Comments(0) Diggs(0)
在qt的安装目录下:QTDIR/bin/windeployqt 例如我的默认安装在: C:\Qt\Qt5.3.1\5.3\msvc2013 windoployqt在: C:\Qt\Qt5.3.1\5.3\msvc2013\bin\windoployqt.exe 注意: 需要把qt的安装路径设置到PA Read More
posted @ 2016-06-29 05:39 findumars Views(1689) Comments(1) Diggs(0)
对话框有两种创建方式:DoModal和Creat。 其中DoModal创建的是模态的对话框,而Creat创建的是非模态的对话框下面总结下他们的不同。 对于模态的对话框,在该对话框被关闭前,用户将不能在同一应用程序的其他地方进行工作(例如open file对话框),而对于非模态的对话框,在它留在屏幕上 Read More
posted @ 2016-06-29 05:38 findumars Views(1539) Comments(0) Diggs(0)