1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | DWORD CALLBACK MyStreamOutCallback( DWORD dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb) { CFile* pFile = (CFile*)dwCookie; pFile ->Write(pbBuff, cb); *pcb = cb; return 0; } void CRichEditCtrlSave() { CFileException ex; CFile file; EDITSTREAM es; CString str( "파일명.txt" ); file.Open(str, CFile::modeCreate | CFile::modeWrite, &ex); es.dwCookie = ( DWORD ) &file; es.pfnCallback = MyStreamOutCallback; 컨트롤_변수명.StreamOut(SF_TEXT, es); file.Close(); } |
320x100
'Windows > MFC' 카테고리의 다른 글
MFC, FileDialog를 호출하는 클래스. CFileDialog (0) | 2015.11.24 |
---|---|
MFC SOCKET에서 IP주소 리턴하는 함수 (0) | 2015.01.23 |
MFC 리치에디터2.0 자동 스크롤 함수 (0) | 2015.01.23 |
MFC 리치에디터2.0 마지막 줄에 텍스트 추가하기 (0) | 2015.01.23 |
MFC 리치에디터2.0 다이얼로그에서 사용시 주의 할 것. (0) | 2015.01.23 |
댓글