'C++/MFC'에 해당되는 글 3건

  1. 2021.05.13 프로젝트에 리소스로 PNG파일 추가
  2. 2020.10.15 CString to float/float to Byte/Byte to Float
  3. 2020.09.17 MFC 강의, 참고

프로젝트에 리소스로 PNG파일 추가

C++/MFC 2021. 5. 13. 15:51

https://blog.naver.com/tipsware/221149552575

 

프로그램 Resource에 PNG 추가하고 사용하기

: Win32 프로그래밍 관련 전체 목차 http://blog.naver.com/tipsware/2210599771931. Resource에 이미지 ...

blog.naver.com

 

'C++ > MFC' 카테고리의 다른 글

CString to float/float to Byte/Byte to Float  (0) 2020.10.15
MFC 강의, 참고  (0) 2020.09.17
:

CString to float/float to Byte/Byte to Float

C++/MFC 2020. 10. 15. 14:28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
void CMFCApplication1Dlg::OnBnClickedButton1()
{
    CString strTest;
 
    //CString to float
    CString str;
    GetDlgItemText(IDC_EDIT1, str); 
    float f = _tstof(str);
 
    strTest.Format(_T("%.4f"), f);
    AfxMessageBox(strTest);
    
    //float to Byte
    unsigned char* upt;
    int iCnt;
    upt = (unsigned char*)&f;
 
    strTest.Format(_T("%02X, %02X, %02X, %02X"), upt[3], upt[2], upt[1], upt[0]);
    AfxMessageBox(strTest);
 
    //Byte to float
    unsigned char b[] = { upt[0], upt[1], upt[2], upt[3] }; //4byte
    memcpy(&f, &b, sizeof(float));
 
    strTest.Format(_T("%.4f"), f);
    AfxMessageBox(strTest);
}
cs



//참고 
//CString to float

https://docs.microsoft.com/ko-kr/cpp/c-runtime-library/reference/atof-atof-l-wtof-wtof-l?view=vs-2019


//float to Byte
https://zapiro.tistory.com/entry/4-byte-float-format-float-%ED%98%95%EC%9D%98-%EC%8B%A4%EC%88%98-%EC%A0%80%EC%9E%A5-%EB%B0%A9%EC%8B%9D


//Byte to float

https://mols.tistory.com/10

'C++ > MFC' 카테고리의 다른 글

프로젝트에 리소스로 PNG파일 추가  (0) 2021.05.13
MFC 강의, 참고  (0) 2020.09.17
:

MFC 강의, 참고

C++/MFC 2020. 9. 17. 17:52

https://www.youtube.com/playlist?list=PLiZvlxkcLhalUHK9UnRS_KweH9R3tgBIO"

유튜브 강의

https://yyman.tistory.com/category/%EC%86%8C%ED%94%84%ED%8A%B8%EC%9B%A8%EC%96%B4%28SW%29/MS%20-%20C++%20%28GUI%29%20MFC


정리된 블로그1

'C++ > MFC' 카테고리의 다른 글

프로젝트에 리소스로 PNG파일 추가  (0) 2021.05.13
CString to float/float to Byte/Byte to Float  (0) 2020.10.15
: