일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 |
Tags
- java
- Encapusulation
- compare
- UNO
- Barcode
- wpf
- Overloading
- sensor
- atmega328
- digitalRead
- flutter
- length
- public
- preprocessing
- Class
- Read
- mfc
- Binary
- Android
- inheritance
- Contour
- Pointer
- SERIAL
- Unity
- file access
- aduino
- memory
- stream
- parameter
- APP
Archives
- Today
- Total
목록txt format (1)
폴크(FOLC)
MFC 테크닉 - 파일 제어 ( TXT format )
# MFC를 이용하는 과정에서 HDD 에 존재하는 파일 ( txt format ) 제어 > Save, Load 형태 - CStdioFile 이용 > exe 파일 위치에 test.txt 파일 생성 # 소스 코드 bool CTxTFormHelper::ReadFile(CString strFileName) { std::vector vecParam; CStdioFile file; CFileException e; if (file.Open(strFileName, CFile::modeReadWrite | CFile::typeText, &e) == TRUE) { CString strReadData; while (file.ReadString(strReadData) == TRUE) { vecParam.push_back(st..
C, C++, MFC/C, C++, MFC 테크닉
2021. 12. 12. 21:34