- 5月 13 週四 202114:25
C++ 筆記 - constexpr vs const c++
- 4月 21 週三 202114:15
C++ 筆記 - Visual Studio debugging execution path

Visual Studio debugging execution path
- 4月 09 週五 202116:00
C++筆記 - SubWCRev.exe Pre-Build Event VS2019

有SVN 就處理
- 3月 19 週五 202118:37
c++ 筆記 - MFC - How to expand combobox with tab control, VS2019

SOL:
::OnSize(UINT nType, int cx, int cy){
- 3月 11 週四 202114:17
C++筆記 - mfc (Exception from HRESULT: 0x80070057 VS2019
Solution:
Delete ".vs" folder
Delete ".vs" folder
- 3月 10 週三 202114:13
C++筆記 - mfc unresolved external symbol _GetFileVersionInfoSizeA

solution:
#pragma comment(lib, "version.lib")
- 3月 02 週二 202114:35
c++筆記 - MFC ,DECLARE_DYNCREATE(.H),IMPLEMENT_DYNCREATE(.CPP),
- 2月 22 週一 202114:16
C++筆記 - Thread 暫定、恢復 (std::condition_variable cv; std::mutex m;)

bool pause=false;
std::condition_variable cv;
std::mutex m;
void C::t2_func(){
for(int i=0;i<data.size();i++){
while(pause){
std::unique_lock<std::mutex> lk(m);
cv.wait(lk);
lk.unlock();
}
process_data(data[i]);
}
}
- 1月 18 週一 202113:56
C++ 筆記 - forward declarations 前置宣告
- 1月 12 週二 202119:16
C++筆記 - MFC 複製Dialog, .h .cpp 檔並建立新Class




