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

Search list

[OtherCFileDialogAddin_src

Description: 这是VC的一个插件的源代码,编译后生成dll。VC加载上后,可以用它来生成各种需要的CFileDialog的调用代码,非常方便。-This is a plug-in source code, compile after generation dll. VC loaded on, it can be used to generate a variety of needs CFileDialog call code is very convenient.
Platform: | Size: 26845 | Author: huashantian | Hits:

[File Operatenotview

Description: 文件视图,CFrameWnd C Static CRect MoveWindow CreatePen CSize CDC SetBkMode SelectObject CPen LineTo SetTextColor CString TextOut CFont CreateFont DrawText CreateDC GetDeviceCaps DeleteDC GetObject GlobalAlloc GlobalLock GetStockObject GetDC SelectPalette RealizePalette GetDIBits ReleaseDC CreateFile WriteFile GlobalUnlock GlobalFree CloseHandle CPaintDC CBitmap CreateCompatibleDC CreateCompatibleBitmap PtInRect BitBlt DeleteObject CPoint ShowWindow ClientToScreen GetWindowDC GetWindowRect CFileDialog CWinApp CSingleDocTemplate CCommandLineInfo UpdateWindow CDialog CDataExchange CDocument CView CPrintInfo GetClientRect SetWindowLong GetWindowLong LoadLibrary GetProcAddress GetLastError FreeLibrary CreateDialog-document View, CFrameWnd CWnd CStatic CRect MoveWindow Creat ePen CSize CDC SetBkMode SelectObject CPen Lin eTo SetTextColor CString TextOut CFont Back Font DrawText CreateDC GetDeviceCaps DeleteD C GetObject GlobalAlloc GlobalLock GetStockO bject GetDC RealizePalette Get SelectPalette DIBits ReleaseDC CreateFile WriteFile Global Unlock GlobalFree CloseHandle CPaintDC CBitm ap CreateCompatibleDC CreateCompatibleBitm ap PtInRect BitBlt DeleteObject CPoint ShowWi ndow ClientToScreen GetWindowDC GetWindowRe ct CFileDialog CWinApp CSingleDocTemplate CC ommandLineInfo UpdateWindow CDialog CDataEx change CDocument CView CPrintInfo GetClientR ect SetWindowLong GetWindowLong LoadLibrary GetProcAddress GetLastError FreeLibrary Cre ateDialog
Platform: | Size: 26729 | Author: slansam | Hits:

[Dialog_WindowVC++CFileDialog1

Description: 在本例中,我们将制作一个利用CfileDialog类弹出“打开”对话筐的应用程序。-in this case, We will make use of a pop-up CfileDialog category "open" dialogue basket applications.
Platform: | Size: 45845 | Author: 况光明 | Hits:

[GUI Developtxt

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 53512 | Author: 快乐 | Hits:

[Windows Developconstcharcharconst

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 39175 | Author: cgw | Hits:

[GUI DevelopCFileDialog

Description: 介绍打开文件对话框时如何显示win2000界面,介绍相当详细,我已按照该方法调试通过
Platform: | Size: 57602 | Author: 萧飒 | Hits:

[WinSock-NDISServerTcp

Description: 相关函数/类: CWinApp CDialog CDataExchange CWnd DestroyIcon LoadIcon GetSystemMenu CMenu CString LoadString AppendMenu SetTextColor IsIconic CPaintDC SendMessage GetSystemMetrics CRect GetClientRect DrawIcon CFileDialog CFile MessageBox
Platform: | Size: 14769 | Author: 地方法 | Hits:

[File OperateFile

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 36880 | Author: asfsafd | Hits:

[Dialog_WindowMultiSelect

Description: 一个CFileDialog的派生类,实现多个文件的打开,并将文件名显示出来
Platform: | Size: 19161 | Author: wuming918 | Hits:

[Other resourceFile

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 38704 | Author: jiangyang520 | 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) }
Platform: | Size: 26089 | Author: 这程子 | Hits:

[Other resourcelesson12

Description: 孙鑫老师VC视频第十二课代码:const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 39007 | Author: shanyingying | Hits:

[Other resourcemyread

Description: 文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用
Platform: | Size: 36915 | Author: 周游 | Hits:

[OtherMFCtest12Code

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 39181 | Author: 陈嵩 | Hits:

[Other resourceIImage

Description: wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification handler code here CString defFilter(\"选中其中一个文件|*.bmp *.jpg *.gif *.png\") CFileDialog dlg(TRUE,NULL,NULL,OFN_ALLOWMULTISELECT,defFilter) if(dlg.DoModal()==IDOK){ PathName=dlg.GetPathName() }
Platform: | Size: 20617 | Author: lzy | Hits:

[Dialog_Windowopenfiledlg

Description: 自定义CFileDialog,增加窗格,增强CFileDialog的功能。
Platform: | Size: 69766 | Author: dream | Hits:

[File Operateselectfolder

Description: VC中提供了CFileDialog类来选择文件,如果想实现选择文件夹的功能,就不是那么简单了。下面的函数,可以实现选择文件夹的功能。并且可以指定文件夹和对话框的名称。
Platform: | Size: 1058 | Author: shisheng | Hits:

[Dialog_Windowfiledlging

Description: Windows 2000有个新的“Open”对话框,这个对话框的左边有一个Places Bar,要想让这个对话框出现,必须在::GetOpenFileName函数中传递OPENFILENAME结构,这个结构隐藏在MFC的CFileDialog类中-Windows 2000 with a new "Open" dialog, the dialog box on the left is a Places Bar, to get this dialog box appears to be : : GetOpenFileName transfer function OPENFILENAME structure, the structure hidden in the MFC CFileDialog class
Platform: | Size: 65797 | Author: 啊啊啊 | Hits:

[File OperateFileSlider

Description: 文件分割器的实现 1.用CFileDialog类让用户选择需要进行分割或合并的文件(根据用户选择的操作) 2.在这里我们在切分文件之后,对分割后的文件名进行一个处理,原则是文件名(不含扩展名)+pti (i为本分文件的序号)+.sld。自己定义了一种扩展名,因为如果别人切分一个exe文件,你分割以 后全部是exe文件,别人一执行,很可能会出现异常的。 3.根据用户填写的分数,计算每一份的大小,除不尽的加进最后一份。每份文件的最后写入一些附加 信息,如文件的扩展名,分数-separate document for the realization of one. With CFileDialog class allows users to choose the need for separate or combined document (user selectable operation) 2. Here we segmentation document, right after the split for a file name, the principle is that the paper (not including extensions) PTI ( i document as part of the serial number). ARX. His definition of an extension, because if someone splitting an exe file, you split after all exe file, and people, it is likely to be abnormal. 3. Users fill in the scores for each of a size, with the exception of the one into the last one. Each of the final document included some additional information, such as the file name extension, scores, etc.
Platform: | Size: 29310 | Author: 躺用 | Hits:

[Dialog_WindowFileDlgExDemo

Description: 本代码中实现的增强型文件对话框美观实用,可以替代CFileDialog!-the code to achieve enhanced dialog beautiful and practical, alternative CFileDialog!
Platform: | Size: 46378 | Author: 冯俊波 | Hits:
« 1 2 3 45 6 7 8 »

CodeBus www.codebus.net