搜索资源列表
在VC中使用MATLABC++函数库
- MATLAB广泛应用于线性代数、自动控制理论、数理统计、数字信号处理、时间序列分析、动态系统仿真等领域。因此如果在VC中对MATLAB进行调用将大大减少编程的工作量、保证程序的准确性,并且继承了VC++强大的功能,提高开发效率,-MATLAB widely used in linear algebra, automatic control theory, mathematical statistics, digital signal processing, time series analysi
parallelogram
- 初学者用的关于VC继承思想的小程序,非常使用于初学者哦-beginners on the VC thinking of the small inheritance procedures used in very beginners oh
vc++lizi
- vc++的几个有关类,重载,继承的例子,包括基本画图操作-vc several of the categories, overloading, inheritance examples, including basic drawing operation
VC++dierci
- 编程实现类的定义,掌握C++面向对象基本特性,如抽象、继承、重载、多态,理解虚函数、构造函数、析构、模板等基本概念与基本语法
VC
- 什么是继承:继承是允许重用现有类去创建新类的过程。分类的原则是一个类派生出来的子类具有这个类的所有非私有的属性。
vc界面
- 我们经常会使用到组合框,而组合框是是有2种功能的--下拉和列表。一般情况下,列表框的宽度和选择框是一样宽的,但是我们有些时候确实很需要把列表框的宽度变大,一便让我们能更好的看我们要选的东西。 为了能有这个功能,我写了下面的这个函数。首先得在你的对话框中添加一个的WM_CTLCOLOR的消息句柄,或者使用CComboBox的继承类,而且在其中添加下面的代码:-we often use to mix frame, and frames are combinations are two kinds
VC继承对话框
- 继承对话框的一个实例程序!
Label
- VC6下继承自CStatic的CLabel类,增加了多个CStatic所不支持的功能,几经考验并完善了不合适的处理模式,目前已经较为完善-Under VC6 the CLabel inherited from CStatic class, increasing the number of CStatic does not support the function, after several test and improve the inappropriate processing mode,
CBitmapSlider
- 一个可以替换滑动条背景的slider控件 继承自mfc的CSliderCtrl类, 用时直接传入图片就行-One can replace the background of the slider slider control mfc' s CSliderCtrl inherited from class, use the line directly to the incoming picture
Syntax-Coloring-Control-VC
- 这个控件封装了能够在鼠标点击时链接到网页的超链接HyperLink控件,并把它们都集成到一个普通的按钮上。另外这个按钮支持32位图的图标。4这个文章实现一个简单的从CWnd继承下来的编辑控件,它具有语法着色功能-This package has been able to control your mouse, click on link to the page when the hyperlink HyperLink control, and they are integrated into a
CBitmapSlider_demo
- 在VC中使用的Slider类库.可以单独编译,继承使用.-Used in the VC library Slider. Can be compiled, inheritance use.
wutext
- VC写的读写UNICODE文件示例,使用CStdioFile的继承类来实现的-VC written documents to read and write UNICODE example, the use of inheritance CStdioFile category achieved
Code
- C++经典语法与应用,类的编写与应用,构造与析构函数,函数的重载,类的继承,函数覆盖,基类与派生类的构造函数、析构函数先后调用顺序,如何在派生类构造函数中向基类的构造函数传递参数,this成员变量,类型转换的内幕,虚拟函数与多态性,引用和指针变量的区别与共同处。VC工程的编译原理与过程,将工程中不同的类拆分到不同的文件中,每一个类由一个.h和.cpp文件共同完成,头文件重复定义问题的解决,培养了学员良好的编程习惯,也为以后分析MFC AppWizard生成的工程奠定了良好基础。-descr ip
synchronize
- 1. 熟悉常用网络数据库的安装和使用 2. 掌握网络数据库的应用编程技术 3. 掌握网络环境下实现数据同步的相关编程知识 4. 掌握网络通信编程的具体应用 Oracle的安装和使用 2、SQL Server的安装和使用 3、数据库应用编程 本次实验采用ADO技术访问Oracle 9i和SqlServer 2000 数据库,用VC++开发,选用MFC开发工具。实验要求中只要求从从站到中心站的同步,这里我们加大难度实现了从站和中心站的互同步。项目名称为:synchroni
MFC
- 一本不可多的的关于C++/VC++的数据,深入剖析VC++继承环境和运行机制原理,能让读者豁然开朗的感觉-One can not be more than on the C++/VC++ data, in-depth analysis of VC++ environment and the operational mechanism of succession theory, allow the reader a clear insight into feelings
VC-language
- 本资料中包含VC语言的应用:建立WORD文件和实际工程上游戏软件的设计,内部重要的理论研究:多线程和继承与多态,另有关于VC的注意事项和异常处理方法。-The information contained the application of VC: to establish a WORD document and designactual engineering game software , internal important theoretical research: multithrea
chuangti_design
- vc继承窗体的设计的程序源码,希望对大家有所帮助-vc inherit the design of the program source code form, we hope to help
ctsj
- vc 继承窗体的设计的程序源码,希望对大家有所帮助-vc inherited form of the design of the program source code, we hope to help
VC
- 设计椭圆类CEllipse,该类从图形元素基类CGraphObj继承而来,椭圆的生成代码-CEllipse
MultiInheritance
- int main() { cout<<"类的多重继承演示"<<endl; CDateTimeType dt(1,1,2008,11,12,12); //直接使用DateTimeType构造函数设置日期时间 cout<<"调用CDateTimeType类构造函数设定的初始日期、时间为:"<<endl; dt.display();//显示时间日期 dt.SetDate(8,8,2008);