12 2014 档案
摘要:记录: 为使用mysql配置codeblocks下C++工程: goto project -> build options a. compiler settings tab -> other options: `mysql_config --cflags` b. linker settings...
阅读全文
摘要:如何配置codeblocks以编译Mysql~分类:Linuxmysql2012-09-03 15:51872人阅读评论(2)收藏举报mysqlcompilerlinkerincludesearchbuildlinux下,使用了codeblocks,有各种编写代码的方便之处,但是遇到类似mysql这...
阅读全文
摘要:添加远程仓库git remote add origin https://github.com/wb136959813/test.git 使用强制push的方法:$ git push -u origin master -f
阅读全文
摘要:::SetWindowPos(AfxGetMainWnd()->m_hWnd,HWND_TOPMOST,-1,-1,-1,-1,SWP_NOMOVE|SWP_NOSIZE);
阅读全文
摘要:ATL中使用CString时,会提示说使用WTL::CString,(由于WTL也有CString,但却不受官方支持,最好使用ATL的实现)而我们只需要使用ATL::CString就可以了,这时只需要在stdafx.h头文件中加如下面2句即可://注明使用ATL::CString而不是WTL::CS...
阅读全文
摘要:COleDateTime tT;CString cstr_today = "2014-21-01";tT.ParseDateTime(cstr_today);SYSTEMTIME st;tT.GetAsSystemTime(st);
阅读全文