|
|
|
|
Generated Access to .NET Resource String |
   |
简 介:
Recently I was given the task of moving string literals from the many files of a C# service project into a single resource file to allow for localization in the future. After describing what needed to be done, my manager handed me a book on .NET resources and said it would help.
最近我被分配了一项任务,将字符串从许多C#服务项目的文件中移动到一个单独的资源文件,以便进行未来的本地化工作。在描述完需要完成的任务之后,我的主管交给我一本关于.NET资源的书,说它会有帮助的。
来源: https://www.codeguru.com/cs_misc/GenResourceKeys.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Movie Club Project |
   |
简 介:
We developed this program for a small local movie club in our country. This program is very simple and might contain some bugs. However, the source is open and you can freely modify.
我们为这个国家的一个小电影俱乐部开发了这个程序。这个程序非常简单,可能包含一些错误。然而,源代码是开放的,可以自由修改。
来源: https://visualbasic.ittoolbox.com/code/d.asp?d=2393&a=s |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Disable close button for Dialog box |
   |
简 介:
There are occasions when we would like to disable the close button on a dialog or any other window.
有时我们需要禁用对话框或其它任何窗口的关闭按钮。
来源: https://www.codeguru.com/dialog/disable_close.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
vsscanf - An Implementation for Windows |
   |
简 介:
VC++ provides the vsprintf() function but for some strange reason does not provide the complementary vsscanf() function which is available on most Unix systems. The VC++ library defines a static function called input() which is not exposed to end users. This function is exactly what vsscanf() does.
VC++ 提供了 vsprintf() 函数,但由于一些原因,没有提供相应的 vsscanf() 函数,这个函数在大多数Unix系统中可以使用。 VC++ 库定义了一个称为 input() 的静态函数,它不有提供给最终用户。这个函数正是完成 vsscanf() 的功能。
来源: https://www.codeguru.com/string/vsscanf.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
TraceView—A Debug View Utility |
   |
简 介:
TraceView—A Debug View Utility
TraceView—这是一个调试视图工具
来源: https://www.codeguru.com/cs_misc/TraceView.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Word Puzzle Maker 2003 |
   |
简 介:
Word Puzzle Maker is a Cool Word Search Puzzle Maker. It was Written by Michael J. Hardy using Visual Basic 4.0 (32-BIT) If you don't have VB 4 then download it from https://www.geocities.com/wpmaker2003 I got the idea from my Wife (Kara)
Word Puzzle Maker 2003是一个很酷的 Word Search Puzzle Maker。它由 Michael J. Hardy 使用 Visual Basic 4.0 (32-BIT) 开发,如果你没有 VB 4 ,可以从https://www.geocities.com/wpmaker2003下载它。
来源: https://visualbasic.ittoolbox.com/code/d.asp?d=2513&a=s |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Full-Screen Dialog |
   |
简 介:
Recently I have taken part in a project. I developed a dialog based full-screen program. When the application is activated it sets the work area of the primary display monitor to the full screen, saves current screen settings and then switches to 800x600x(Maximal available number of colors) mode, hides Windows Taskbar and opens its dialog in full screen. Being deactivated it restores the previous display settings.
最近在我参加的一个项目中,我开发了一个全屏对话框。当应用程序运行时,它设置主显示监视区的工作区为整个屏幕,保存当前屏幕设置,再切换到 800x600x(最大可能的颜色数)模式,隐藏Windows任务条,在全屏模式下运行它的对话框。退出时它恢复以前的显示设置。
来源: https://www.codeguru.com/dialog/FullScreenDlgDemo.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Multi Language Resource Strings in a Sin |
   |
简 介:
Before displaying the messages you must define them. The snap shot of a simple ".mc" file is given below. You must use a Unicode compatible editor since Visual Studio does not support Unicode. On Windows NT (Service Pack 6) you can use Notepad since it supports Unicode.
在显示消息之前,你需要先定义它。这个项目给出一个简单的 ".mc"文件,你必须使用一个兼容Unicode 的编辑器,因为 Visual Studio 不支持Unicode。在 Windows NT (Service Pack 6)中,你可以使用 Notepad ,它支持Unicode.
来源: https://www.codeguru.com/string/Multilingual.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Stack Window |
   |
简 介:
The stack window gives alternative way to manage multiple dialog boxes inside single window (see picture). Unlike standard property sheet control layout of stack window is vertical. Pages are separated with captions. Page captions displays user-defined name and can be clicked to expand/contract the page. If size of stack window exceeds size of parent's client area user can pan window contents by clicking and dragging on the whitespace area or static/disabled control of child dialog box.
堆栈窗口可以让你用另一种方法来管理单个窗口中的多个对话框。不像标准的属性页控件,堆栈窗口的布局是垂直的。页面用标题分割。页面标题显示了用户定义的名字,可以通过点击来扩展或收缩页面。如果堆栈窗口的页面大小超过了父窗口的客户区域,用户可以通过点击和拖放空白区域或子对话框的静态/禁用控件来扩展窗口内容。
来源: https://www.codeguru.com/dialog/stackwnd.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
AutoPtr<> Class |
   |
简 介:
The AutoPtr<> class is an extension of std::auto_ptr<> template class from the Standard Template Library. The main purpose of it is to destroy automatically some dynamically allocated resource (e.g. a memory, but it may be some other custom resource) after an AutoPtr<> object is destroyed.
AutoPtr<> 是标准模板库中的 std::auto_ptr<> 模板类的扩展。其主要目的是在 AutoPtr<> 对象销毁后自动释放一些动态分配的资源(如内存,但也可以是其它定制的资源)。
来源: https://www.codeguru.com/cpp_mfc/AutoPtr.html |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
|
|
|
|