上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 124 下一页
摘要: vs2015,放在OnInitDialog()里面this->SetWindowPos(&wndTopMost, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE); 其它方法:设置置顶显示 ::SetWindowPos(hWnd,HWND_TOPMOST,0,0,0,0,SW 阅读全文
posted @ 2021-09-12 11:14 txwtech 阅读(2324) 评论(0) 推荐(0)
摘要: cnt=m_ListCtrl_Entity.GetItemCount(); CString show_content=L"有请求,请处理"; CString no_show_content=L"无请求"; if(cnt>0) { m_bSendMessage.Attach(IDC_BUTTON_Se 阅读全文
posted @ 2021-09-10 14:29 txwtech 阅读(88) 评论(0) 推荐(0)
摘要: MFC集成了相应的宏"TRACE"来实现这个功能。示例如下: TRACE("x = %d and y = %x and z = %f\n", 1, 2, 3); 可以直接打印信息,打印出来的东西在"输出窗口"中 Debug模式有效 //MessageBox(L"configIP="+configIP 阅读全文
posted @ 2021-09-10 08:34 txwtech 阅读(1677) 评论(0) 推荐(0)
摘要: neptune操作系统代码启动流程 https://mp.weixin.qq.com/s/KhHdEUifmYFn13a5FvlMxw neptune开发板启动运行串口打印的原始log如下:[09:44:52.097]收←◆entering kernel init… [09:44:52.176]收← 阅读全文
posted @ 2021-09-09 13:06 txwtech 阅读(185) 评论(0) 推荐(0)
摘要: 未处理的异常: 0xC0000005: 读取位置 0x00000000 时发生访问冲突 解决方法: 生成-》清理解决方法-》生成解决方法 阅读全文
posted @ 2021-09-09 11:48 txwtech 阅读(427) 评论(0) 推荐(0)
摘要: Visual Assist X for vs2005 http://www.rsdown.cn/down/165522.html#download http://d1.xszdll.cn:8001/rsdown/Visual%20Assist%20X%20for%20vs2005.rar 阅读全文
posted @ 2021-09-08 14:25 txwtech 阅读(173) 评论(0) 推荐(0)
摘要: vc++ error C3861: “make_pair”: 找不到标识符 make_pair前面添加: std:: std::map<CString, CString> map_str; map_str.insert(std::make_pair("aa1","FB001")); 阅读全文
posted @ 2021-09-08 13:30 txwtech 阅读(785) 评论(0) 推荐(0)
摘要: Hispark WiFi IoT Hi3861 相关资料 https://harmonyos.51cto.com/posts/1158 阅读全文
posted @ 2021-09-07 22:35 txwtech 阅读(155) 评论(0) 推荐(0)
摘要: c#信号量实现线程挂起,暂停,继续,停止操作 using System; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace testManualResetEvent 阅读全文
posted @ 2021-09-07 14:21 txwtech 阅读(1116) 评论(1) 推荐(0)
摘要: string[] aa_tt = new string[20]; string[] aa_tt2 = new string[20]; Array.Clear(aa_tt,0,aa_tt.Length); //数组每个元素置零 Array.Copy(aa_tt,aa_tt2,aa_tt.Length) 阅读全文
posted @ 2021-09-06 09:00 txwtech 阅读(3604) 评论(0) 推荐(0)
上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 124 下一页