Welcome![Sign In][Sign Up]
Location:
Search - cfile

Search list

[GUI Developtxt

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 53248 | Author: 快乐 | Hits:

[Windows Developconstcharcharconst

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 38912 | Author: cgw | Hits:

[File OperateFile

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 36864 | Author: asfsafd | Hits:

[Data structscfile

Description: 该代码可实现简单行编辑程序例,串操作应用举例,实现串的存储管理-The code can realize a simple line editing process cases, the application of string operations, for example, strings of storage management realize
Platform: | Size: 2048 | Author: 并刀如水 | Hits:

[File Operatehowtoopenafile

Description: CFile类是MFC最结冰那的文件操作类型,它能够用于对文件的操作。通常使用CFile类的成员函数打开一个文件-CFile is the most ice MFC that type of file operations, it can be used to document the operation. Normally use CFile class member function to open a file
Platform: | Size: 198656 | Author: tce | Hits:

[OS programFile

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 38912 | Author: jiangyang520 | Hits:

[File OperateGenericSerializer_demo

Description: Serializer CFile 保存文件 的使用 环境: VC6.0 -Serializer CFile the use of the environment to save the file: VC6.0
Platform: | Size: 24576 | Author: 未红兵 | Hits:

[Internet-Networkcfile

Description: unix下的C语言文件传输服务器端源程序文件-C under unix file transfer server-side language source file
Platform: | Size: 5120 | Author: terry | Hits:

[File OperateReadFile

Description: 打开一个TXT文件并显示在EDIT控件中 步骤: 1.新建一个基于对话框的工程,名称为ReadFile 2.在界面上添加一个按钮(IDC_BUTTON1)和一个文本编辑(IDC_EDIT1) IDC_EDIT1的属性:多行、可下拉滚动条. 3.编辑按钮触发事件(void CReadFileDlg::OnButton1()) void CReadFileDlg::OnButton1() { // TODO: Add your control notification handler code here CString sFileFilter="*.hex|*.hex" CString sFileName CFileDialog fDlg(true,NULL,NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,sFileFilter,NULL) fDlg.DoModal() sFileName=fDlg.GetFileName() if(sFileName!="") { CFile file(sFileName,CFile::modeRead) int nFileLength=file.GetLength() char *buffer HGLOBAL hgl=::GlobalAlloc(GMEM_MOVEABLE,nFileLength+1) buffer=(char *)::GlobalLock(hgl) file.Read(buffer,nFileLength) SetDlgItemText(IDC_EDIT1,buffer) ::GlobalUnlock(hgl) ::GlobalFree(hgl) } UpdateData(false) } -Open a TXT file and displayed in the EDIT control steps: 1. Create a new dialog-based project, known as the ReadFile2. In the interface to add a button (IDC_BUTTON1) and a text editor (IDC_EDIT1) IDC_EDIT1 properties: multi-line, can be drop-down scroll bar .3. Edit button trigger events (void CReadFileDlg:: OnButton1 ()) void CReadFileDlg:: OnButton1 () (//TODO: Add your control notification handler code here CString sFileFilter =*. hex |*. hex CString sFileName CFileDialog fDlg (true, NULL, NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, sFileFilter, NULL) fDlg.DoModal () sFileName = fDlg.GetFileName () if (sFileName! =) (CFile file (sFileName, CFile:: modeRead) int nFileLength = file.GetLength () char* buffer HGLOBAL hgl =:: GlobalAlloc (GMEM_MOVEABLE, nFileLength+ 1) buffer = (char*):: GlobalLock (hgl) file.Read (buffer, nFileLength) SetDlgItemText (IDC_EDIT1, buffer):: GlobalUnlock (hgl):: GlobalFree (hgl)) UpdateData (false))
Platform: | Size: 1888256 | Author: 这程子 | Hits:

[File Operatevdfile1

Description: VC++ CFile use sample code for reference -VC++ CFile use sample code for reference
Platform: | Size: 87040 | Author: 黃哲韻 | Hits:

[VC/MFCmyread

Description: 文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用-Text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of
Platform: | Size: 286720 | Author: 周游 | Hits:

[File FormatCFILE

Description: 主要介绍c++中文件得各种打开方法,以及各种对文件得操作方法-Main Introduction c++ In a variety of open documents, as well as a variety of methods of operation of the document
Platform: | Size: 5120 | Author: 杨亿万 | Hits:

[OtherMFCtest12Code

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 38912 | Author: 陈嵩 | Hits:

[OS programvC++_API_CFile

Description: 解读VC++编程中的文件操作API和CFile类 通过此文件,可以更好地了解CFile类-Interpretation of VC++ Programming file operations in CFile Class API and through this document, you can better understand the CFile Class
Platform: | Size: 107520 | Author: 宋先生 | Hits:

[VC/MFCcfile

Description: 使用C语言编写菜单的例子,简单实用,适合新手-The use of C language example of the menu, simple and practical, suitable for novice
Platform: | Size: 1024 | Author: bin | Hits:

[File OperateCFile64

Description: 重载过的cfile 读取大于2G的文件-Heavy-duty off CFile read a document larger than 2G
Platform: | Size: 1024 | Author: yunjianzhang | Hits:

[OtherSGIP1.2.0.10.DEMO

Description: 用c++编写的的中国联通SGIP协议,内容挺全。 MultiByteToWideChar WideCharToMultiByte CString CFile CFileException CWinApp CDialog CDataExchange CWnd DestroyIcon LoadIcon GetSystemMenu CMenu LoadString AppendMenu SetWindowText SetTimer IsIconic CPaintDC SendMessage GetSystemMetrics CRect GetClientRect DrawIcon PostMessage PostQuitMessage GetLastError CTime wsprintf KillTimer WinExec GetPrivateProfileString WritePrivateProfileString SetTextColor CAsyncSocket -With c++ Prepared by the China Unicom SGIP agreement, the contents of the whole ting. MultiByteToWideChar WideCharToMultiByte CString CFile CFileException CWinApp CDialog CDataExchange CWnd DestroyIcon LoadIcon GetSystemMenu CMenu LoadString AppendMenu SetWindowText SetTimer IsIconic CPaintDC SendMessage GetSystemMetrics CRect GetClientRect DrawIcon PostMessage PostQuitMessage GetLastError CTime wsprintf KillTimer WinExec GetPrivateProfileString WritePrivateProfileString SetTextColor CAsyncSocket
Platform: | Size: 646144 | Author: tw | Hits:

[OtherFile

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 36864 | Author: yuehua8 | Hits:

[File OperateCFileAndCStdioFile

Description: CFile和CStdioFile的文件读写使用方法-CFile and CStdioFile the use of documents to read and write
Platform: | Size: 1024 | Author: viviChow | Hits:

[File OperateCFile

Description: 建立文件和文件读写,程序说明了文件操作编程的基本方法,显示界面上附操作说明。-Set up files and read and write file operations procedures describe the basic programming methods, shows that the interface is attached instructions.
Platform: | Size: 783360 | Author: nick | Hits:
« 1 23 4 5 6 7 8 9 10 ... 13 »

CodeBus www.codebus.net