|
|
FolderView Control |
   |
简 介:
The FolderView Control allows you to add a Windows Explorer-like treeview to your own application, which shows all the folders and even files in the shell's namespace exactly as Windows Explorer shows.The FolderView Control offers powerful functionality to browse the Shell's Namespace.
Some of its features include showing files as well as folders, showing Shell Context Menus, show / hide Special folders or hidden items , AutoUpdate , executing Shell Commands, setting the root folder ,showing multi-state check boxes for items, Powerful event notification , Full integration with the FileView and ShComboBox Controls , showing Infotips and much more.
目录视图控件
目录视图控件可以让你在应用程序中增加一个Windows Explorer风格的树形视图,用于显示外壳名字空间的目录和文件,和Windows Explorer 显示的一样。FolderView 控件提供的强大功能可以用于浏览外壳的名字空间。它的一些功能有显示文件和目录,显示外壳扩展菜单,显示/隐藏特殊的目录或隐藏的项目,自动更新,执行外壳命令,设置根目录,显示条目的多属性复选框,强大的事件通知,和FileView 及 ShComboBox 控件的完全集成,显示提示信息等等。
来源: http://www.a1vbcode.com/app.asp?ID=478 |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
HexEdit Control |
   |
简 介:
The HexEdit control is a plain hex editor wrapped in a CEdit derived class called CHexEdit.
HexEdit 控件是一个普通的十六进制编辑器,封装在一个从 CEdit派生的 CHexEdit类。
来源: http://www.codeguru.com/editctrl/hexeditctrl.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Year and Month Selector Control (2) |
   |
简 介:
Year and Month Selector Control
年份和月份选择控件
来源: http://www.codeguru.com/controls/ymselect2.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
RunOnce |
   |
简 介:
Shows how to make the appropriate registry settings so that your application will be started the next time Windows starts. You can specify whether this should occur only once or at every login, and whether it should apply only to the current user or all users.
这个程序演示了如何设置注册表,让你的应用程序在下一次Windows启动时运行。你可以说明这个应用程序是只运行一次,还是在每次登录时都运行,以及只影响到当前用户,还是对所有用户都有效。
来源: http://www.mvps.org/vb/ |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Print Support in a Custom DataGrid Contr |
   |
简 介:
In many Windows applications, it could be useful to add some kind of print functionality. The DataGrid included in Windows Forms does not include any support for this. In this article I will show how to use a custom DataGrid I wrote in Visual Basic .NET inheriting from the class System.Windows.Forms.DataGrid to implement an application with a print preview and obviously print support. If you already have a window with a DataGrid, you can go directly to the section Using the Custom DataGrid.
在许多Windows应用程序中,增加一些打印功能是很有用的。Windows 窗体中的DataGrid 没有支持打印功能。在这个项目中我将演示如何使用我在Visual Basic .NET中通过继承System.Windows.Forms.DataGrid来实现一个具有打印预览和打印支持的应用程序。如果你已经有一个带有DataGrid 的窗口,你可以直接选择Using the Custom DataGrid。
来源: http://www.codeguru.com/vbnet_controls/print_support.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Keyword coloring Edit control |
   |
简 介:
This project implements a simple color encoding text editor, which is similar to the editor found in Visual C++ or Visual Basic. It allows the developer to configure the encoding of keywords and comments. This project is an MDI application.
这个项目实现了一个简单的颜色编码的文本框编辑器,它类似于 Visual C++ 或 Visual Basic中的编辑器。它可以让开发人员配置关键字和注释的编码。这是项目是一个MDI应用程序。
来源: http://www.codeguru.com/editctrl/color_edit.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
A class for the IE3 DateTime Picker |
   |
简 介:
The DateTimeCtrl is implemented in the IE3 common controls (v 4.70). Those with MS Visual C++ 5.0 will have this installed and hence will have access to the control, but unfortunately not to a simple MFC wrapper for the control.
This article and the date picker class has been updated to include CE support with the help of Gerrit Hoekstra. Those using VC6 and IE4 have access to this control built into VC IDE.
DateTimeCtrl在IE3的公共控件(v 4.70)中实现。随MS Visual C++ 5.0安装了这一控件,所以可以访问它,但没有这个控件的MFC封装类。
在 Gerrit Hoekstra的帮助下,这个项目中的日期选择类已经升级包括了对CE的支持。使用VC6 和 IE4可以访问内建于 VC IDE中的这个控件。
来源: http://www.codeguru.com/controls/date_time_picker3.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Shell32 |
   |
简 介:
Three techniques to achieve that ultimate FAQ -- Shell and Wait -- under Win32. GetModuleUsage doesn't cut it anymore. Includes one method to avoid a hanging DOS box so kindly telling you its "Finished." Demonstrates OpenProcess, WaitForSingleObject, GetExitCodeProcess, GetWindowThreadProcessId, and related APIs.
使用了三种最终的技术-FAQ -- Shell 和 Wait -- 在 Win32下。GetModuleUsage 再也不能去掉它。包括了一个方法来避免挂起一个DOS窗口,并可以友好地告诉你它“已经完成了”。演示了OpenProcess, WaitForSingleObject, GetExitCodeProcess, GetWindowThreadProcessId, 以及相关的 APIs。
来源: http://www.mvps.org/vb/ |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
How to Fill a ListView with ADO.Net Data |
   |
简 介:
This article will show how to fill a ListView Control with the data contained in any ADO.Net DataReader. You can use a DataSet bind it to a Grid Control to show the output of a query, but data binding of controls is not the ideal method of accessing the data.
这个例子演示了如何使用ADO.Net DataReader中的数据来填充一个ListView 控件。你也可以使用绑定DataSet 的网格控件来显示一个查询的输出,但控件的数据绑定并不是一种理想的方法。
来源: http://www.codeguru.com/vbnet_controls/ListViewDataSet.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Masked Edit control |
   |
简 介:
Masked Edit control
掩码编辑框控件。
来源: http://www.codeguru.com/editctrl/masked_edit.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
|
|
|