摘要: 转自https://www.cnblogs.com/study-everyday/p/6978513.html 问题原因 可能是修改本地的文件之前没有update,导致commit的时候产生冲突,致使SVN崩溃。 解决方法: 1. 到网上下载sqlite3.exe,解压到D:\document\.s 阅读全文
posted @ 2022-04-11 16:24 曦花 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 转自https://www.cnblogs.com/hmmcsdd/archive/2007/03/26/MSHttpErrorCode.html HTTP 响应状态码 #define HTTP_STATUS_CONTINUE 100 OK to continue with request. #de 阅读全文
posted @ 2021-05-06 13:40 曦花 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 豆豆系统:http://www.doudouxitong.net/windows7/系统之家:http://www.huizhiwyx.com/这里可以下载 xp、win7、win8、win10等的安装镜像iso 阅读全文
posted @ 2015-11-17 14:00 曦花 阅读(196) 评论(0) 推荐(0) 编辑
摘要: int approximateToNearestMultiple(int number, int multiple) { int nearestMultiple = (number + multiple / 2) / multiple * multiple; return nearestMultip 阅读全文
posted @ 2024-03-25 14:21 曦花 阅读(3) 评论(0) 推荐(0) 编辑
摘要: debug模式下: 包含include和lib <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LinkIncremental>true</LinkIncremental> <IncludePath>$ 阅读全文
posted @ 2024-01-15 16:49 曦花 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 再次打开vs2019 阅读全文
posted @ 2023-08-31 10:14 曦花 阅读(365) 评论(0) 推荐(0) 编辑
摘要: h文件中 afx_msg void OnSize(UINT nType, int cx, int cy); void ResizeUI(); vector<CRect> m_vec_rect_; BEGIN_MESSAGE_MAP(CDlgXXX, CBCGPDialog) ON_WM_SIZE() 阅读全文
posted @ 2023-06-03 13:24 曦花 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 需要在OnInitDialog里加 ModifyStyleEx(WS_EX_DLGMODALFRAME, 0); BOOL CDlgXXX::OnInitDialog() { CDialog::OnInitDialog(); // 去掉对话框标题栏上的图标 ModifyStyleEx(WS_EX_D 阅读全文
posted @ 2023-05-26 13:48 曦花 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Cmake-gui生成sln后,再次vs打开sln,遇到编译失败。 提示的是 #include <wincrypt.h> 4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.19041.0\um\wincrypt.h(380,29): erro 阅读全文
posted @ 2023-05-16 17:25 曦花 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 参考 https://help.aliyun.com/document_detail/464171.html?spm=a2c4g.453353.0.0.81fb6cf0iySGZT要引用 aliyun-openapi-cpp-sdk,包,就必须git clone下源码,并且cmake-gui,编译。 阅读全文
posted @ 2023-05-16 17:20 曦花 阅读(131) 评论(0) 推荐(0) 编辑
摘要: class CTitleButton : public CBCGPButton { DECLARE_DYNAMIC(CTitleButton) public: CTitleButton(); virtual ~CTitleButton(); protected: DECLARE_MESSAGE_MA 阅读全文
posted @ 2023-05-08 17:27 曦花 阅读(26) 评论(0) 推荐(1) 编辑
摘要: 参考 https://www.cnblogs.com/yibuyi-123/p/14661160.html BOOL CheckNumValid(CString strIn) { wstring szName = strIn.GetBuffer(); strIn.ReleaseBuffer(); s 阅读全文
posted @ 2023-04-19 13:10 曦花 阅读(774) 评论(0) 推荐(0) 编辑
摘要: perfmon -res 转自https://www.94ip.com/post/1354.html 阅读全文
posted @ 2023-03-28 12:16 曦花 阅读(151) 评论(0) 推荐(0) 编辑