上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 远程操作ip服务器, 运行linux系统命令 可以配置文件,启动服务器,检查证书, 等 阿里云配置证书,域名证书过期,记得及时配置证书 阅读全文
posted @ 2024-06-12 17:40 曦花 阅读(55) 评论(0) 推荐(0)
摘要: 参考这个 VS2019 附加库目录路径和附加依赖项没有问题却仍报错LNK1104无法打开lib的解决办法 https://blog.csdn.net/weixin_66296893/article/details/127463346 他解释的原因很好,目录深度(绝对路径深度) 而我遇到的问题是,右键 阅读全文
posted @ 2024-05-27 17:19 曦花 阅读(174) 评论(0) 推荐(0)
摘要: int approximateToNearestMultiple(int number, int multiple) { int nearestMultiple = (number + multiple / 2) / multiple * multiple; return nearestMultip 阅读全文
posted @ 2024-03-25 14:21 曦花 阅读(21) 评论(0) 推荐(0)
摘要: debug模式下: 包含include和lib <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LinkIncremental>true</LinkIncremental> <IncludePath>$ 阅读全文
posted @ 2024-01-15 16:49 曦花 阅读(24) 评论(0) 推荐(0)
摘要: 再次打开vs2019 阅读全文
posted @ 2023-08-31 10:14 曦花 阅读(933) 评论(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:23 曦花 阅读(55) 评论(0) 推荐(0)
摘要: 需要在OnInitDialog里加 ModifyStyleEx(WS_EX_DLGMODALFRAME, 0); BOOL CDlgXXX::OnInitDialog() { CDialog::OnInitDialog(); // 去掉对话框标题栏上的图标 ModifyStyleEx(WS_EX_D 阅读全文
posted @ 2023-05-26 13:47 曦花 阅读(174) 评论(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 曦花 阅读(347) 评论(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 曦花 阅读(329) 评论(0) 推荐(0)
摘要: class CTitleButton : public CBCGPButton { DECLARE_DYNAMIC(CTitleButton) public: CTitleButton(); virtual ~CTitleButton(); protected: DECLARE_MESSAGE_MA 阅读全文
posted @ 2023-05-08 17:27 曦花 阅读(53) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 ··· 14 下一页