2022-03-16から1日間の記事一覧

MFCで バージョン表記の文字列などから数値部分だけ抽出

CString csTempVer = "1.2.33"; CString csNum = ""; int pos; while (!csTempVer.IsEmpty()) { pos = csTempVer.SpanExcluding("0123456789").GetLength(); csTempVer = csTempVer.Mid(pos); pos = csTempVer.SpanIncluding("0123456789").GetLength(); csN…

MFCでDoEvent

void DoEvents() { MSG msg; while(::PeekMessage(&msg, NULL, NULL, NULL, PM_NOREMOVE)) { if (!AfxGetApp()->PumpMessage()) return; } } ネタ元 https://freebsd.sing.ne.jp/lang/c/10/02.html