|
|
|
|
Customizable Animated Sliding Puzzle |
   |
简 介:
This applet allows you to add an animated sliding puzzle to your website with an animation of your own.
这个applet可以让你增加一个动画幻灯片到你的Web站点中,可以定制你自己的动画。
来源: https://java.ittoolbox.com/code/d.asp?d=1588&a=s |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Switching views in splitter panes (SDI) |
   |
简 介:
I add here the code that could be used to switch views in splitter panes. I usually make database applications, and I don't want that the document to be created/destroyed by the framework, so I create the document myself, and in document's constructor I set the m_bAutoDelete flag to FALSE. The CMainFrame class contains CSplitterWnd m_wndSplitter member.
这个代码可以在分隔条窗格中切换视图。我通常要生成数据库应用程序,不想使用框架来生成和销毁文档,所以我创建了自己的文档,在文档的构造器中我设置m_bAutoDelete 标志为FALSE。CMainFrame类包含了CSplitterWnd m_wndSplitter 成员变量。
来源: https://www.codeguru.com/splitter/switchviews_in_splitter.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Monitor applications/services in Windows |
   |
简 介:
Monitor applications/services in Windows 9x/NT/2000/XP
这个项目可以监视Windows 9x/NT/2000/XP中的应用程序或服务。
来源: https://www.freevbcode.com/ShowCode.Asp?ID=6443 |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Lexical Analyser |
   |
简 介:
In my first year university programming project one of my missions is to write a parser.   Parsing is mainly about advanced problems such as matching up parentheses and building expression tress, but before it can be done, there are some mundane things to take care of: skipping over spaces, recognizing that a sequence of characters such as 0.13 and + represents a real number and a plus operator respectively, and so on.
在我大学第一年中,我的一个编程项目是编写一个分析器。主要分析一些高级问题,如模式匹配,生成表达式树,在运行它之前,要注意一些小事情:跳过空格,识别一个字符序列,如0.13 ,以及表达一个实数,一个+运算符,等等
来源: https://www.codeguru.com/cpp_mfc/LexicalAnalyser.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Defender |
   |
简 介:
Space Station Defender game
这是一个空间防御游戏。
来源: https://java.ittoolbox.com/code/d.asp?d=1587&a=s |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Implementing Rulers inside of Splitter P |
   |
简 介:
Many applications that display images or documents show rulers on both sides of the view to indicate your position within the page and allow a more accurate positioning of the cursor. Implementing rulers can be difficult, since we must reserve a space for them inside the view (this gets more difficult on a CScrollView-derived class). Another solution is to use "fixed" splitters (meaning they cannot be resized). The example below demonstrates how to build such rulers.
许多显示图像或文档的应用程序会在视图两边显示一个标尺以标明你在页面中的位置,以便更精确的定位光标。实现标尺是比较难的,因为我们必须在视图中为它们保留空间(在一个CScrollView派生的类中这会更难)。另一种方法是使用“固定的”分隔条(它们不能改变大小)。这个例子演示了创建这样的标尺。
来源: https://www.codeguru.com/splitter/rulers.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
How to use VB Data Report with Hierarchi |
   |
简 介:
How to use VB Data Report with Hierarchical Recordsets (without a Data Environment)
这个项目演示了在VB数据报表中使用层次记录集(而不使用数据环境)。
来源: https://www.freevbcode.com/ShowCode.Asp?ID=6442 |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
A Generalized Parsing Class for MFC |
   |
简 介:
One of the many tasks that a programmer has is taking a set of characters and breaking it down ino its discrete parts. This may be a comma delimited data file, a full directory path, or a set of program directives to perform an action verb and supply arguments. I often do this to implement a command handler for other classes. Rather than send the data to the class as disparate arguments I build a command string such as "Title=the Title@Start Date=12/12/1998@price=12.45" and pass it to the class which then parses the command string and sets the appropriate class variables.
程序员的一项工作之一就是接收一套字符,再将它们分割成离散的部分,或者是一套程序来执行动作和提供参数。这经常用这个功能来实现一个其它类的命令处理器。不用将数据发送到这个作为不同的参数,我生成了一个命令行字符串"Title=the Title@Start Date=12/12/1998@price=12.45",将它传递给这个类,由这个类来分析命令行字符串,并设置相应的类变量。
来源: https://www.codeguru.com/cpp_mfc/parser.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Zmei Slide Show |
   |
简 介:
Slide show with pixelate effect.1 to 6 images.
Zmei Slide Show幻灯片显示程序,具有pixelate效果,可以演示1到6幅图片。
来源: https://java.ittoolbox.com/code/d.asp?d=1592&a=s |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
Different Views In Dynamic Splitter |
   |
简 介:
Same view in the dynamic splitter is very restrictive. There is no point in creating same type of views. Here is a way to create different view, each time you split the window.
In class definition of CSplitterWnd, there is a protected member m_pDynamicViewClass of the type CRunTimeClass *. This member is initialized in the Create call of the splitter window. Next time when a view is created, new view is constructed using m_pDynamicViewClass member. To get a different view, you will just have to change the member m_pDynamicViewClass to the required new view. Since this member is a protected member, to change it I have derived my class 'CDynSplitter' from class CSplitterWnd. I have just added a function to change member m_pDynamicViewClass.
在动态分隔条中只能创建相同的视图是非常有限的。创建相同类型的视图没有意义。这里提供了一种每次拆分窗口时创建不同视图的方法。
的CSplitterWnd的定义中,有一个保护的CRunTimeClass *类型的成员变量m_pDynamicViewClass 。这个成员变量在分隔条窗口的Create 调用中初始化。下一次创建视图时,新视图使用m_pDynamicViewClass 成员变量构造。为了得到一个不同的视图,你将必须修改m_pDynamicViewClass 为你需要的新视图。于由这个成员变量是受保护的,为了修改它,我从 CSplitterWnd类中派生了自己的 'CDynSplitter'。我只增加了一个修改成员变量m_pDynamicViewClass的函数。
来源: https://www.codeguru.com/splitter/dynamic_splitter_bhagat.shtml |
分 类:
|
许可证:
GNU General Public License (GPL) |
|
|
|
|
|